diff options
author | lioux <lioux@FreeBSD.org> | 2001-02-23 02:15:18 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-02-23 02:15:18 +0800 |
commit | 43fdedb91f27714fae56f4c20b76c80f464d7dcd (patch) | |
tree | 7062152f48bf1393fa0f99a3904bbb8615fd8992 /mail/qmail-tls | |
parent | bbdf21863719dd45f0198d45bb41f8a6fcfe3ddd (diff) | |
download | freebsd-ports-gnome-43fdedb91f27714fae56f4c20b76c80f464d7dcd.tar.gz freebsd-ports-gnome-43fdedb91f27714fae56f4c20b76c80f464d7dcd.tar.zst freebsd-ports-gnome-43fdedb91f27714fae56f4c20b76c80f464d7dcd.zip |
* qmail port
o bump PORTREVISION
o sanitize MASTER_SITES
o added several flags (defined checks) to enable
active slave port control on what they inherit
o add extra enhancement patches, these can be
inherited too:
- WITH_QMAILQUEUE_PATCH: qmailqueue-patch
- WITH_BIG_TODO_PATCH: big-todo.103.patch
- WITH_BIG_CONCURRENCY_PATCH: big-concurrency.patch
- WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT
default: 509
o add patches checksum to distinfo
o added MASTER_SITE_QMAIL for internal use
o additional copies of slave qmail patches are now housed
at MASTER_SITE_LOCAL, PATCH_SITE_SUBDIR=lioux because
these patches only have ONE PATCH_SITES source each
- qmail-ldap-1.03-20010201.patch.gz (qmail-ldap)
- qmail-mysql-1.1.1.patch (qmail-mysql)
- tls.patch (qmail-tls)
o turn all absolute references to both binaries and
FreeBSD configuration files into VARs: better
maintability
o s/yetanotherone-/slaveport-/: that is the correct
nomenclature
o ${LN} should use -sf instead of plain -s
o typo fix: QMail -> qmail
* qmail-ldap port
o bump PORTREVISION in sync with master port bump
o minor changes to comply to recent changes to the master
port
o block the WITH_BIG_CONCURRENCY_PATCH, it does not like
the qmail-ldap patch
o enable SMTP TLS support with WITH_TLS
- the PKGNAMESUFFIX changes to -ldap-with_tls
- let it know the location of QMAIL_TLS_PORT
- add certificate and certificate-req; in fact,
we are inheriting qmail-tls targets
o s/yetanotherone-/slaveport-/: that is the correct
nomenclature
o tabulate better the WITH_* advertisement messages
o add appropriate message to PKGMESSAGE about the
new certificate targets following the qmail-tls
port
o nomenclature fix: ^ldap- -> ^qmail-ldap-
* qmail-mysql port
o bump PORTREVISION in sync with master port bump
o block the WITH_QMAILQUEUE_PATCH, it does not like
the qmail-mysql patch
o s/yetanotherone-/slaveport-/: that is the correct
nomenclature
* qmail-tls port
o bump PORTREVISION in sync with master port bump
o minor changes to comply to recent changes to the master
port
o s/yetanotherone-/slaveport-/: that is the correct
nomenclature
o nomenclature fix: ^tls- -> ^qmail-tls-
Diffstat (limited to 'mail/qmail-tls')
-rw-r--r-- | mail/qmail-tls/Makefile | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/mail/qmail-tls/Makefile b/mail/qmail-tls/Makefile index af454106c0ca..f7ab94acc649 100644 --- a/mail/qmail-tls/Makefile +++ b/mail/qmail-tls/Makefile @@ -7,6 +7,7 @@ PORTNAME= qmail PORTVERSION= ${QMAIL_VERSION}.${TLS_PATCH_DATE} +PORTREVISION= 1 CATEGORIES= mail PKGNAMESUFFIX= -tls @@ -40,20 +41,16 @@ QMAIL_PORT_PREFIX!= cd ${QMAIL_PORT} && ${MAKE} -V PREFIX DOCFILES+= ${WRKDIR}/TLS.readme -yetanotherone-pre-fetch: tls-pre-fetch +slaveport-pre-fetch: qmail-tls-pre-fetch -tls-pre-fetch: - @${ECHO_MSG} "" - @${ECHO_MSG} "You may use the following build options:" - @${ECHO_MSG} "" - @${ECHO_MSG} "WITH_TLS_DEBUG=yes enable additional debug information" - @${ECHO_MSG} "" +qmail-tls-pre-fetch: + @${ECHO_MSG} "WITH_TLS_DEBUG=yes enable additional debug information" -yetanotherone-post-patch: tls-post-patch +slaveport-post-patch: qmail-tls-post-patch -tls-post-patch: +qmail-tls-post-patch: @${HEAD} -74 ${DISTDIR}/tls.patch > ${WRKDIR}/TLS.readme - @${PERL} -pi -ne "s|/var/qmail|${PREFIX}|;s|/usr/local/ssl|${OPENSSLBASE}|" ${WRKSRC}/Makefile + @${PERL} -pi -ne "s|/usr/local/ssl|${OPENSSLBASE}|" ${WRKSRC}/Makefile # Primary Ugh... ;-) # idea stolen from www/apache13-ssl, a target written by adam@algroup.co.uk |