mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
2f929e82e7
See http://www.gnupg.org/whatsnew.html#rn20020429 for changelog.
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# New ports collection makefile for: gnupg
|
|
# Date created: Sep 30, 1998
|
|
# Whom: kuriyama@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnupg
|
|
PORTVERSION= 1.0.7
|
|
CATEGORIES= security
|
|
MASTER_SITES= ftp://ftp.gnupg.org/pub/gcrypt/%SUBDIR%/ \
|
|
ftp://pgp.iijlab.net/pub/%SUBDIR%/ \
|
|
${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/gnupg/&,}
|
|
MASTER_SITE_SUBDIR= gnupg
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
|
|
LIB_DEPENDS= intl.2:${PORTSDIR}/devel/gettext
|
|
|
|
USE_GMAKE= YES
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_TARGET=
|
|
CFLAGS:= ${CFLAGS:S/-pipe//g}
|
|
MAN1= gpg.1 gpgv.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${PREFIX}/lib/libgdbm.so)
|
|
LIB_DEPENDS+= gdbm.2:${PORTSDIR}/databases/gdbm
|
|
.endif
|
|
.if exists(${PREFIX}/lib/libiconv.so)
|
|
LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/gnupg
|
|
.for i in DETAILS FAQ HACKING OpenPGP
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${i} ${PREFIX}/share/doc/gnupg
|
|
.endfor
|
|
.for i in ABOUT-NLS AUTHORS BUGS COPYING INSTALL NEWS PROJECTS \
|
|
README THANKS TODO VERSION
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/gnupg
|
|
.endfor
|
|
.endif
|
|
# ${CHMOD} u+s ${PREFIX}/bin/gpg
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
check:
|
|
(cd ${WRKSRC}; ${MAKE} check)
|
|
|
|
.include <bsd.port.post.mk>
|