mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
10e420075f
--- 5.0.5 2013/12/09 Add support for MARC-in-JSON. yaz-marcdump and the record conversion module can read and write this format. For record format JSON, yaz-ztest returns MARC-in-JSON records. iconv: fixes and more tests for danmarc character set encoding. 0xa733 is converted to @ĂĽ , 0xa732 is converted to @Ă instead of @a733, @a732 .
32 lines
734 B
Makefile
32 lines
734 B
Makefile
# Created by: Dmitry Sivachenko <dima@Chg.RU>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yaz
|
|
PORTVERSION= 5.0.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/
|
|
|
|
MAINTAINER= pawel@FreeBSD.org
|
|
COMMENT= Z39.50/SR client and API library
|
|
|
|
LIB_DEPENDS= libicuuc.so:${PORTSDIR}/devel/icu
|
|
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
USES= pathfix pkgconfig iconv
|
|
USE_GNOME= libxml2 libxslt
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS+=--enable-shared --with-openssl=${OPENSSLBASE} \
|
|
--with-iconv=${ICONV_PREFIX} --with-xml2=${LOCALBASE} \
|
|
--with-xslt=${LOCALBASE} --with-icu=${LOCALBASE} \
|
|
--enable-tcpd
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e 's,[$$]{datarootdir}/man,${PREFIX}/man,' \
|
|
${WRKSRC}/doc/Makefile
|
|
|
|
.include <bsd.port.mk>
|