diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2008-03-29 11:27:32 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2008-03-29 11:27:32 +0000 |
commit | f8e108704fdff0e7d3d4947614bda0b54e7d5c70 (patch) | |
tree | 082c44c50c8ede34abd3dee4d1926d8512ea2c56 /security/openssl | |
parent | 96191f28147372ac66b23f56d00be4f525fa4c86 (diff) | |
download | ports-f8e108704fdff0e7d3d4947614bda0b54e7d5c70.tar.gz ports-f8e108704fdff0e7d3d4947614bda0b54e7d5c70.zip |
- remove WITH_OPENSSL_SNAPSHOT
Notes
Notes:
svn path=/head/; revision=210066
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/Makefile | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 69342a373baa..08f05d952f58 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -6,10 +6,6 @@ # PORTNAME= openssl -.if defined(WITH_OPENSSL_SNAPSHOT) -PORTVERSION= 0.9.8 -PORTREVISION!= date -v-1d +%Y%m%d -.else .if !defined(WITH_OPENSSL_BETA) && ( defined(WITH_OPENSSL_097) || defined(WITH_OPENSSL_STABLE) ) PORTVERSION= 0.9.7m PORTREVISION?= 0 @@ -17,15 +13,14 @@ PORTREVISION?= 0 PORTVERSION= 0.9.8g PORTREVISION?= 0 .endif -.endif CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/%SUBDIR%/ \ ftp://ftp.openssl.org/%SUBDIR%/ \ ftp://ftp.sunet.se/pub/security/tools/net/openssl/%SUBDIR%/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/%SUBDIR%/ -MASTER_SITE_SUBDIR= ${MASTER_SITE_SUBDIR2} +MASTER_SITE_SUBDIR= source PKGNAMESUFFIX?= ${BETA_SUFFIX}${BASE_SUFFIX}${PKGNAMESUFFIX2} -DISTNAME= ${DISTNAME2} +DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= dinoex@FreeBSD.org COMMENT= SSL and crypto library @@ -34,16 +29,7 @@ COMMENT= SSL and crypto library .error You have `USE_OPENSSL' variable defined either in environment or in make(1) arguments. Please undefine and try again. .endif -.if defined(WITH_OPENSSL_SNAPSHOT) -MASTER_SITE_SUBDIR2= snapshot -DISTNAME2= ${PORTNAME}-${PORTVERSION}-stable-SNAP-${PORTREVISION} -NO_CHECKSUM= yes -.else -MASTER_SITE_SUBDIR2= source -DISTNAME2= ${PORTNAME}-${PORTVERSION} -.endif - -.if defined(WITH_OPENSSL_BETA) || defined(WITH_OPENSSL_SNAPSHOT) +.if defined(WITH_OPENSSL_BETA) BETA_SUFFIX= -beta CONFLICTS?= openssl-0.* openssl-stable-0.* NO_LATEST_LINK= yes |