mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
cb8366697d
Approved by: portmgr (blanket)
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
PORTNAME= yaz
|
|
DISTVERSION= 5.31.1
|
|
PORTREVISION= 7
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://ftp.indexdata.dk/pub/yaz/
|
|
|
|
MAINTAINER= nc@FreeBSD.org
|
|
COMMENT= Z39.50/SR client and API library
|
|
WWW= https://www.indexdata.com/resources/software/yaz/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libicuuc.so:devel/icu \
|
|
libgnutls.so:security/gnutls
|
|
|
|
USES= gnome iconv libtool ncurses pathfix localbase:ldflags \
|
|
pkgconfig readline shebangfix tcl
|
|
SHEBANG_FILES= src/yaz-asncomp
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
|
|
USE_GNOME= libxml2 libxslt
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CONFIGURE_ARGS= --enable-shared --with-iconv=${ICONV_PREFIX} \
|
|
--with-xml2 --with-xslt --with-icu --enable-tcpd
|
|
LIBS+= -lexecinfo
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS MEMCACHED REDIS
|
|
|
|
MEMCACHED_DESC= Memcached distributed cache system support
|
|
MEMCACHED_CONFIGURE_WITH= memcached
|
|
MEMCACHED_LIB_DEPENDS= libmemcached.so:databases/libmemcached
|
|
|
|
REDIS_CONFIGURE_WITH= redis
|
|
REDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|tclsh |tclsh${TCL_VER} |' ${WRKSRC}/configure
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e 's,[$$]{datarootdir}/man,${PREFIX}/share/man,' \
|
|
${WRKSRC}/doc/Makefile
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.*
|
|
|
|
.include <bsd.port.mk>
|