diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2003-05-12 09:46:27 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2003-05-12 09:46:27 +0800 |
commit | 3e71b69dd9489ce40a7e6abcf2a95619a9a2d9de (patch) | |
tree | 8b04b5aed86cd34fdc781b80c0266358a6e6cfef /security | |
parent | f2f2431082427a4b343eb711fcef31a6f7df115d (diff) | |
download | freebsd-ports-gnome-3e71b69dd9489ce40a7e6abcf2a95619a9a2d9de.tar.gz freebsd-ports-gnome-3e71b69dd9489ce40a7e6abcf2a95619a9a2d9de.tar.zst freebsd-ports-gnome-3e71b69dd9489ce40a7e6abcf2a95619a9a2d9de.zip |
Show $PKGMESSAGE only if $OSVERSION < 500019.
Add URL reference for rndcontrol.
Submitted by: dougb
Diffstat (limited to 'security')
-rw-r--r-- | security/gnupg/Makefile | 5 | ||||
-rw-r--r-- | security/gnupg/pkg-message | 1 | ||||
-rw-r--r-- | security/gnupg1/Makefile | 5 | ||||
-rw-r--r-- | security/gnupg1/pkg-message | 1 |
4 files changed, 12 insertions, 0 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index f996fc0cb1ea..822959d80695 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnupg PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= gnupg @@ -56,7 +57,11 @@ post-install: .if defined(WITH_SUID_GPG) ${CHMOD} u+s ${PREFIX}/bin/gpg .endif +.if ${OSVERSION} < 500019 @${CAT} ${PKGMESSAGE} +.else +PKGMESSAGE= /nonexistent +.endif check: (cd ${WRKSRC}; ${MAKE} check) diff --git a/security/gnupg/pkg-message b/security/gnupg/pkg-message index 886f5a84287d..6123fa32f234 100644 --- a/security/gnupg/pkg-message +++ b/security/gnupg/pkg-message @@ -1,4 +1,5 @@ ************************************************************ TIPS: o Use rndcontrol(8) if you want more entropy. + See http://people.freebsd.org/~dougb/randomness.html for more details. ************************************************************ diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile index f996fc0cb1ea..822959d80695 100644 --- a/security/gnupg1/Makefile +++ b/security/gnupg1/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnupg PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= gnupg @@ -56,7 +57,11 @@ post-install: .if defined(WITH_SUID_GPG) ${CHMOD} u+s ${PREFIX}/bin/gpg .endif +.if ${OSVERSION} < 500019 @${CAT} ${PKGMESSAGE} +.else +PKGMESSAGE= /nonexistent +.endif check: (cd ${WRKSRC}; ${MAKE} check) diff --git a/security/gnupg1/pkg-message b/security/gnupg1/pkg-message index 886f5a84287d..6123fa32f234 100644 --- a/security/gnupg1/pkg-message +++ b/security/gnupg1/pkg-message @@ -1,4 +1,5 @@ ************************************************************ TIPS: o Use rndcontrol(8) if you want more entropy. + See http://people.freebsd.org/~dougb/randomness.html for more details. ************************************************************ |