mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
37 lines
747 B
Makefile
37 lines
747 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= taskwarrior
|
|
PORTVERSION= 2.5.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Feature-rich command-line todo list manager
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libgnutls.so:security/gnutls
|
|
TEST_DEPENDS= faketime:devel/libfaketime
|
|
|
|
USES= compiler:c++11-lib cmake python:test shebangfix
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= taskwarrior
|
|
GH_PROJECT= task
|
|
|
|
CMAKE_ARGS+= -DTASK_DOCDIR:STRING=${DATADIR:S/${PREFIX}\///} \
|
|
-DTASK_MAN1DIR:STRING=man/man1 \
|
|
-DTASK_MAN5DIR:STRING=man/man5
|
|
|
|
SHEBANG_FILES= scripts/*/*.pl \
|
|
doc/rc/refresh \
|
|
|
|
do-test:
|
|
@cd ${WRKSRC}/test && \
|
|
${PYTHON_CMD} run_all --verbose && \
|
|
${PYTHON_CMD} problems
|
|
|
|
.include <bsd.port.mk>
|