diff options
Diffstat (limited to 'devel/liborcus/Makefile')
-rw-r--r-- | devel/liborcus/Makefile | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/devel/liborcus/Makefile b/devel/liborcus/Makefile index 9cd20b359b44..76f1c530c1f7 100644 --- a/devel/liborcus/Makefile +++ b/devel/liborcus/Makefile @@ -1,8 +1,7 @@ PORTNAME= liborcus -DISTVERSION= 0.19.2 -PORTREVISION= 5 +DISTVERSION= 0.20.2 CATEGORIES= devel misc -MASTER_SITES= https://kohei.us/files/orcus/src/ +#MASTER_SITES= https://kohei.us/files/orcus/src/ MAINTAINER= office@FreeBSD.org COMMENT= Standalone file import filter library for spreadsheet documents @@ -11,14 +10,18 @@ WWW= https://gitlab.com/orcus/orcus LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= mdds>=2.1:devel/mdds -LIB_DEPENDS= libboost_system.so:devel/boost-libs \ - libixion-0.18.so:textproc/libixion +BUILD_DEPENDS= mdds>=${MDDS_VERSION}:devel/mdds +LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ + libixion-0.20.so:textproc/libixion -USES= compiler:c++17-lang gmake libtool localbase:ldflags \ +USES= autoreconf compiler:c++17-lang gmake libtool localbase:ldflags \ pathfix pkgconfig tar:xz USE_LDCONFIG= yes +USE_GITLAB= yes +GL_ACCOUNT= orcus +GL_PROJECT= orcus + GNU_CONFIGURE= yes INSTALL_TARGET= install-strip @@ -35,7 +38,11 @@ OPTIONS_SUB= yes STATIC_CONFIGURE_ENABLE= static -PLIST_SUB= VERSION=0.18 -#PLIST_SUB= VERSION=${PORTVERSION:R} +PLIST_SUB= VERSION=${PORTVERSION:R} + +MDDS_VERSION= 3.1 + +post-patch: + ${REINPLACE_CMD} -e 's/mdds-3.0/mdds-${MDDS_VERSION}/' ${WRKSRC}/configure.ac .include <bsd.port.mk> |