diff options
author | makc <makc@FreeBSD.org> | 2013-10-23 21:08:41 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2013-10-23 21:08:41 +0800 |
commit | 257d95e619d504625a3dd72269614d7fe350704c (patch) | |
tree | 902ae1e48303d70f1045908f9eb477d7722924c8 /security | |
parent | 4db462c2d32f9526ce9940e28a4b22915d0982f5 (diff) | |
download | freebsd-ports-gnome-257d95e619d504625a3dd72269614d7fe350704c.tar.gz freebsd-ports-gnome-257d95e619d504625a3dd72269614d7fe350704c.tar.zst freebsd-ports-gnome-257d95e619d504625a3dd72269614d7fe350704c.zip |
- Support staging
- Use new LIB_DEPENDS syntax
- Use options helpers
- Convert to USES
- Minor changes/fixes
Diffstat (limited to 'security')
-rw-r--r-- | security/pinentry-curses/Makefile | 1 | ||||
-rw-r--r-- | security/pinentry-gtk/Makefile | 1 | ||||
-rw-r--r-- | security/pinentry-gtk2/Makefile | 1 | ||||
-rw-r--r-- | security/pinentry-qt4/Makefile | 1 | ||||
-rw-r--r-- | security/pinentry/Makefile | 5 |
5 files changed, 2 insertions, 7 deletions
diff --git a/security/pinentry-curses/Makefile b/security/pinentry-curses/Makefile index c38bffca673a..28ccee26e8aa 100644 --- a/security/pinentry-curses/Makefile +++ b/security/pinentry-curses/Makefile @@ -14,5 +14,4 @@ PORT_OPTIONS+= NCURSES MASTERDIR= ${.CURDIR}/../pinentry -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff --git a/security/pinentry-gtk/Makefile b/security/pinentry-gtk/Makefile index bab630a480c9..50b52e27f10b 100644 --- a/security/pinentry-gtk/Makefile +++ b/security/pinentry-gtk/Makefile @@ -14,5 +14,4 @@ PORT_OPTIONS+= GTK MASTERDIR= ${.CURDIR}/../pinentry -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff --git a/security/pinentry-gtk2/Makefile b/security/pinentry-gtk2/Makefile index 7d5d32e7edb8..a0371f6ace7d 100644 --- a/security/pinentry-gtk2/Makefile +++ b/security/pinentry-gtk2/Makefile @@ -14,5 +14,4 @@ PORT_OPTIONS+= GTK2 MASTERDIR= ${.CURDIR}/../pinentry -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff --git a/security/pinentry-qt4/Makefile b/security/pinentry-qt4/Makefile index 4e4c81349378..6cd5753c16e3 100644 --- a/security/pinentry-qt4/Makefile +++ b/security/pinentry-qt4/Makefile @@ -13,5 +13,4 @@ PORT_OPTIONS+= QT4 MASTERDIR= ${.CURDIR}/../pinentry -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff --git a/security/pinentry/Makefile b/security/pinentry/Makefile index 32c7fac77777..3acbe733d365 100644 --- a/security/pinentry/Makefile +++ b/security/pinentry/Makefile @@ -11,8 +11,8 @@ MASTER_SITE_SUBDIR= pinentry MAINTAINER= makc@FreeBSD.org COMMENT?= Collection of simple PIN or passphrase entry dialogs -LIB_DEPENDS= gcrypt:${PORTSDIR}/security/libgcrypt \ - ksba.19:${PORTSDIR}/security/libksba +LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \ + libksba.so:${PORTSDIR}/security/libksba CONFLICTS_INSTALL?= pinentry-[a-z]* @@ -38,7 +38,6 @@ QT4_DESC= Qt 4 frontend PKGNAMESUFFIX= ${PINENTRY_SLAVE} .endif -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MQT4} |