diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-07-05 18:27:50 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-07-05 18:27:50 +0000 |
commit | cc016c47083c419d2fd82a58b1a16bb0a247e92a (patch) | |
tree | 2e7d6679325bb930a90fd210b3614ad093431968 | |
parent | 3b7ea6467d25cd5482bb8c5672ad93ae898280b0 (diff) | |
download | ports-cc016c47083c419d2fd82a58b1a16bb0a247e92a.tar.gz ports-cc016c47083c419d2fd82a58b1a16bb0a247e92a.zip |
Add an openssh-portable-base slave port to install with OVERWRITE_BASE
Notes
Notes:
svn path=/head/; revision=322345
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/openssh-portable-base/Makefile | 10 | ||||
-rw-r--r-- | security/openssh-portable/Makefile | 2 |
3 files changed, 12 insertions, 1 deletions
diff --git a/security/Makefile b/security/Makefile index 730aeceb9943..ace7b829530a 100644 --- a/security/Makefile +++ b/security/Makefile @@ -359,6 +359,7 @@ SUBDIR += openscep SUBDIR += openssh-askpass SUBDIR += openssh-portable + SUBDIR += openssh-portable-base SUBDIR += openssl SUBDIR += openssl_tpm_engine SUBDIR += openvas-client diff --git a/security/openssh-portable-base/Makefile b/security/openssh-portable-base/Makefile new file mode 100644 index 000000000000..e2463c200ace --- /dev/null +++ b/security/openssh-portable-base/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +PORTNAME= openssh +PKGNAMESUFFIX= -portable-base + +MASTERDIR= ${.CURDIR}/../openssh-portable + +OPTIONS_SLAVE= OVERWRITE_BASE + +.include "${MASTERDIR}/Makefile" diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile index 892f46c82150..26180e82ad6c 100644 --- a/security/openssh-portable/Makefile +++ b/security/openssh-portable/Makefile @@ -8,7 +8,7 @@ PORTEPOCH= 1 CATEGORIES= security ipv6 MASTER_SITES= ${MASTER_SITE_OPENBSD} MASTER_SITE_SUBDIR= OpenSSH/portable -PKGNAMESUFFIX= -portable +PKGNAMESUFFIX?= -portable MAINTAINER= bdrewery@FreeBSD.org COMMENT= The portable version of OpenBSD's OpenSSH |