forked from Lainports/freebsd-ports
* Backport upstream commmit a59e902b887fd92337c9728f668cf9c89da3957a * Remove GNU_CONFIGURE_MANPREFIX Reference: https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commit;h=a59e902b887fd92337c9728f668cf9c89da3957a Changelog: https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=blob;f=NEWS;h=b865ecc7197a4f60b1530958fbb25a92bdfdc3de;hb=bb732615daad9bba9026354ae90f0f5292ea4908 PR: 279903 Reviewed by: novel (maintainer)
42 lines
975 B
Makefile
42 lines
975 B
Makefile
PORTNAME= libgpg-error
|
|
DISTVERSION= 1.50
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= GNUPG
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Common error values for all GnuPG components
|
|
WWW= https://www.gnupg.org/software/libgpg-error/
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
|
|
LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB
|
|
|
|
USES= cpe libtool pathfix tar:bzip2
|
|
CPE_VENDOR= gnupg
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
DOCS= AUTHORS ChangeLog NEWS README
|
|
INFO= gpgrt
|
|
|
|
CONFIGURE_ARGS= --enable-static=yes \
|
|
--enable-install-gpg-error-config
|
|
|
|
OPTIONS_DEFINE= DOCS NLS TEST
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext iconv
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
NLS_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG} --with-libintl-prefix=${LOCALBASE}
|
|
|
|
TEST_CONFIGURE_ENABLE= tests
|
|
TEST_TARGET= check
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|