diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-19 20:05:39 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-19 20:45:28 +0000 |
commit | 1a0e33f27be63e211100e87e3bf7b434cef5f118 (patch) | |
tree | 22d4cb3f9bea11f272889a09884bb98eb8fc816a /deskutils | |
parent | 0ea64959dc2484f87003c0fc5964ede847d63919 (diff) | |
download | ports-1a0e33f27be63e211100e87e3bf7b434cef5f118.tar.gz ports-1a0e33f27be63e211100e87e3bf7b434cef5f118.zip |
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/simpleagenda/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/deskutils/simpleagenda/Makefile b/deskutils/simpleagenda/Makefile index 690af93a9481..ca8bf4799453 100644 --- a/deskutils/simpleagenda/Makefile +++ b/deskutils/simpleagenda/Makefile @@ -5,21 +5,25 @@ CATEGORIES= deskutils gnustep MASTER_SITES= http://coyote.octets.fr/pub/gnustep/ DISTNAME= SimpleAgenda-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bofh@FreeBSD.org COMMENT= Simple calendar and agenda application WWW= http://wiki.gnustep.org/index.php/SimpleAgenda.app +LICENSE= GPLv2 + LIB_DEPENDS+= libical.so:devel/libical \ libuuid.so:misc/e2fsprogs-libuuid -LICENSE= GPLv2 - -USES= gnustep +USES= gnustep localbase USE_GNUSTEP= back build + GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -CFLAGS+= -I${LOCALBASE}/include +.include <bsd.port.options.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400091 +CFLAGS+= -Wno-error=incompatible-function-pointer-types +.endif pre-configure: ${REINPLACE_CMD} -e 's|SimpleAgenda|SimpleAgenda.m|' ${WRKSRC}/configure |