mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
e55b80195e
Changes: https://github.com/unicode-org/icu/releases/tag/release-74-1 Reported by: GitHub (watch releases) PR: 274317 Exp-run by: antoine (incomplete) Approved by: fluffy
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
PORTNAME= sword
|
|
PORTVERSION= 1.8.1
|
|
PORTREVISION= 17
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://crosswire.org/ftpmirror/pub/sword/source/v${PORTVERSION:R}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Framework for manipulating Bible texts
|
|
WWW= https://crosswire.org/sword/index.jsp
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= cppunit-config:devel/cppunit
|
|
|
|
USES= gmake libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-conf \
|
|
--with-zlib
|
|
INSTALL_TARGET= install-strip
|
|
CPPFLAGS+= -DU_USING_ICU_NAMESPACE=1
|
|
|
|
SUB_FILES= pkg-message
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= CLUCENE CURL
|
|
OPTIONS_DEFAULT= CLUCENE CURL
|
|
CLUCENE_DESC= Include indexing capability
|
|
|
|
CLUCENE_LIB_DEPENDS= libclucene-core.so:textproc/clucene \
|
|
libicudata.so:devel/icu
|
|
CLUCENE_USES= compiler:c++11-lib
|
|
CLUCENE_CONFIGURE_WITH= clucene=${LOCALBASE} icu
|
|
|
|
CURL_LIB_DEPENDS= libcurl.so:ftp/curl
|
|
CURL_CONFIGURE_WITH= curl
|
|
|
|
post-install:
|
|
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install_config)
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/sword.conf \
|
|
${STAGEDIR}${PREFIX}/etc/sword.conf.sample
|
|
|
|
.include <bsd.port.mk>
|