ports/devel/cgit/Makefile
Rene Ladan 3d9a815d9c all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
2023-06-27 21:34:34 +02:00

68 lines
1.9 KiB
Makefile

PORTNAME= cgit
PORTVERSION= 1.2.3
CATEGORIES= devel www
MASTER_SITES= http://git.zx2c4.com/cgit/snapshot/:cgit \
KERNEL_ORG/software/scm/git:git
DISTFILES= cgit-${PORTVERSION}${EXTRACT_SUFX}:cgit \
git-${GIT_VERSION}${EXTRACT_SUFX}:git
MAINTAINER= mt@markoturk.info
COMMENT= Fast, lightweight web frontend for Git repositories
WWW= https://git.zx2c4.com/cgit/about/
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
TEST_DEPENDS= msgfmt:devel/gettext-tools
GIT_VERSION= 2.25.1
USES= compiler:c++11-lang cpe gmake iconv perl5 python:env \
shebangfix ssl tar:xz
CPE_VENDOR= lars_hjemli
USE_PERL5= test
SHEBANG_FILES= filters/email-gravatar.py \
filters/html-converters/md2html \
filters/html-converters/rst2html \
filters/syntax-highlighting.py
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB}
MAKE_ARGS+= CGIT_SCRIPT_PATH=${WWWDIR} CGIT_CONFIG=${PREFIX}/etc/cgitrc \
prefix=${PREFIX} NO_GETTEXT=1 NO_LUA=1 NO_R_TO_GCC_LINKER=1 V=1
SUB_FILES= pkg-message
PORTDOCS= ${PORTNAME}rc.5.txt
OPTIONS_DEFINE= DOCS ASCIIDOC
OPTIONS_DEFAULT= ASCIIDOC
OPTIONS_SUB= yes
ASCIIDOC_DESC= Use asciidoc to preprocess man page
ASCIIDOC_BUILD_DEPENDS= a2x:textproc/asciidoc
post-extract:
@${RMDIR} ${WRKSRC}/git
@${MV} ${WRKDIR}/git-${GIT_VERSION} ${WRKSRC}/git
post-patch:
@${REINPLACE_CMD} -e 's/^\(GIT_VER =\).*$$/\1 ${GIT_VERSION}/' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' \
-e "s|\(ALL_CFLAGS =\)|\1 -I${OPENSSLINC}|g" \
-e "s|\(ALL_LDFLAGS =\)|\1 -L${OPENSSLLIB}|g" \
${WRKSRC}/git/Makefile
post-install:
${STRIP_CMD} ${STAGEDIR}${WWWDIR}/cgit.cgi
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
post-install-ASCIIDOC-on:
a2x --doctype manpage --format manpage ${WRKSRC}/cgitrc.5.txt
${INSTALL_MAN} ${WRKSRC}/cgitrc.5 ${STAGEDIR}${PREFIX}/man/man5
.include <bsd.port.mk>