b95d127471
- Update to 1.6.1 - Remove some unneeded patches - Fix pkg-plist - report configure bug upstream https://bugs.g10code.com/gnupg/issue1668 - report API breakage downstream and find that MacPorts had the same issue https://rt.cpan.org/Ticket/Display.html?id=97201 - bump PORTREVISION for dependent ports (approx. 100 ports) - Thanks to exp-run by antoine@ to find ports that break - patch ports that would otherwise break security/shishi with PR 192164 is already committed [1] devel/ccrtp [2] editors/abiword [3] security/p5-Crypt-GCrypt PR: 191256, 192162 [1], 192163 [2], 192166 [3] Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com> Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit)
38 lines
832 B
Makefile
38 lines
832 B
Makefile
# Created by: Kevin Zheng <kevinz5000@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gnomint
|
|
PORTVERSION= 1.2.1
|
|
PORTREVISION= 7
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= kevinz5000@gmail.com
|
|
COMMENT= X.509 Certification Authority management tool
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \
|
|
libgnutls.so:${PORTSDIR}/security/gnutls \
|
|
libsqlite3.so:${PORTSDIR}/databases/sqlite3
|
|
|
|
BUILD_DEPENDS= intltool-update:${PORTSDIR}/textproc/intltool
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake perl5 pkgconfig readline
|
|
USE_GNOME= gconf2 gdkpixbuf2 glib20 gtk20
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
post-install:
|
|
${RMDIR} ${STAGEDIR}${PREFIX}/lib/pkgconfig
|
|
|
|
.include <bsd.port.mk>
|