diff options
Diffstat (limited to 'net/libarms/Makefile')
-rw-r--r-- | net/libarms/Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/net/libarms/Makefile b/net/libarms/Makefile index 2dcadff5b656..0d6171591cd4 100644 --- a/net/libarms/Makefile +++ b/net/libarms/Makefile @@ -1,9 +1,7 @@ PORTNAME= libarms -PORTVERSION= 5.01 -PORTREVISION= 2 +PORTVERSION= 6.33 CATEGORIES= net devel -MASTER_SITES= https://dev.smf.jp/dl/ \ - http://dev.smf.jp/dl/ +MASTER_SITES= https://dev.smf.jp/dl/ MAINTAINER= shigeru@iij.ad.jp COMMENT= SMFv2/ARMS client library for C @@ -12,17 +10,18 @@ WWW= https://dev.smf.jp/libarms/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -DEPRECATED= Obsolete version and not updated in a decade -EXPIRATION_DATE=2025-07-31 - LIB_DEPENDS= libexpat.so:textproc/expat2 USES= gmake libtool localbase ssl GNU_CONFIGURE= yes USE_LDCONFIG= yes -post-configure: - @${REINPLACE_CMD} 's|$${datarootdir}/doc/$${PACKAGE_TARNAME}|${DOCSDIR}|' \ - ${WRKSRC}/Makefile +post-patch: +# NetBSD's SIMPLEQ_* macros are called STAILQ_* on FreeBSD + @${REINPLACE_CMD} -e 's,SIMPLEQ_,STAILQ_,' \ + ${WRKSRC}/libarms/cache.c \ + ${WRKSRC}/module/module_db_mi.c \ + ${WRKSRC}/protocol/proto_push_read_status.c \ + ${WRKSRC}/protocol/proto_push_read_storage.c .include <bsd.port.mk> |