diff options
Diffstat (limited to 'textproc/libixion/Makefile')
-rw-r--r-- | textproc/libixion/Makefile | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/textproc/libixion/Makefile b/textproc/libixion/Makefile index 0bc5c1c1e37e..256e6b849b32 100644 --- a/textproc/libixion/Makefile +++ b/textproc/libixion/Makefile @@ -1,8 +1,11 @@ PORTNAME= libixion -DISTVERSION= 0.19.0 -PORTREVISION= 4 +DISTVERSION= 0.20.0 CATEGORIES= textproc -MASTER_SITES= https://kohei.us/files/ixion/src/ +#MASTER_SITES= https://kohei.us/files/ixion/src/ + +PATCH_SITES+= https://gitlab.com/ixion/ixion/-/commit/ +PATCHFILES+= bfe5ab6adadda265d575fec9c192e6f53f2ef9f5.diff:-p1 \ + d1ee97a73027579dd988d96d7a154f38c3187f37.diff:-p1 MAINTAINER= office@FreeBSD.org COMMENT= General purpose formula parser, interpreter, dependency tracker @@ -11,17 +14,26 @@ WWW= https://gitlab.com/ixion/ixion LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= mdds>=2.1:devel/mdds -LIB_DEPENDS= libboost_system.so:devel/boost-libs +BUILD_DEPENDS= mdds>=${MDDS_VERSION}:devel/mdds +LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs -USES= libtool localbase pathfix pkgconfig tar:xz +USES= autoreconf libtool localbase pathfix pkgconfig tar:xz USE_LDCONFIG= yes +USE_GITLAB= yes +GL_ACCOUNT= ixion +GL_PROJECT= ixion + GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -PLIST_SUB= VERSION=0.18 -#PLIST_SUB= VERSION=${DISTVERSION:R} + +PLIST_SUB= VERSION=${DISTVERSION:R} CONFIGURE_ARGS= --disable-python +MDDS_VERSION= 3.1 + +post-patch: + ${REINPLACE_CMD} -e 's/mdds-3.0/mdds-${MDDS_VERSION}/' ${WRKSRC}/configure.ac + .include <bsd.port.mk> |