diff options
author | ale <ale@FreeBSD.org> | 2006-01-27 21:25:16 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-01-27 21:25:16 +0800 |
commit | 272b6fa25a5e0a7089744473819ea8c29af774a3 (patch) | |
tree | 37ebe4b89874e14c6853ee9f974040289e9b283c /mail/qmailadmin-devel/Makefile | |
parent | 6f18cd1c9ed1d9087f338beab89b639dc8e08b83 (diff) | |
download | freebsd-ports-gnome-272b6fa25a5e0a7089744473819ea8c29af774a3.tar.gz freebsd-ports-gnome-272b6fa25a5e0a7089744473819ea8c29af774a3.tar.zst freebsd-ports-gnome-272b6fa25a5e0a7089744473819ea8c29af774a3.zip |
Remove qmailadmin-devel port: no more devel releases expected.
PR: ports/92329
Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Diffstat (limited to 'mail/qmailadmin-devel/Makefile')
-rw-r--r-- | mail/qmailadmin-devel/Makefile | 121 |
1 files changed, 0 insertions, 121 deletions
diff --git a/mail/qmailadmin-devel/Makefile b/mail/qmailadmin-devel/Makefile deleted file mode 100644 index 2a476e5d3594..000000000000 --- a/mail/qmailadmin-devel/Makefile +++ /dev/null @@ -1,121 +0,0 @@ -# New ports collection makefile for: qmailadmin -# Date created: 23 Sep 2000 -# Whom: Neil Blakey-Milner -# -# $FreeBSD$ -# - -PORTNAME= qmailadmin -PORTVERSION= 1.2.7 -PORTREVISION= 1 -CATEGORIES= mail www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -PKGNAMESUFFIX= -devel - -MAINTAINER= ale@FreeBSD.org -COMMENT= CGI program for administering Qmail with vchkpw/vpopmail - -BUILD_DEPENDS= \ - autorespond:${PORTSDIR}/mail/autorespond \ - ${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail-devel -RUN_DEPENDS= \ - autorespond:${PORTSDIR}/mail/autorespond \ - ${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail-devel - -.if defined(WITHOUT_IDX) -BUILD_DEPENDS+= ezmlm-send:${PORTSDIR}/mail/ezmlm -RUN_DEPENDS+= ezmlm-send:${PORTSDIR}/mail/ezmlm -.else -BUILD_DEPENDS+= ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx -RUN_DEPENDS+= ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx -.endif - -CONFLICTS= qmailadmin-1.* - -GNU_CONFIGURE= YES -USE_GMAKE= YES -WANT_QMAIL= yes - -# -# User-configurable variables -# -# CGIBINDIR - location of your cgi directory -# CGIBINSUBDIR - subdirectory to place cgi scripts in -# CGIBINURL - location of your cgi directory in a URL -# WEBDATADIR - location of your html files -# WEBDATASUBDIR - subdirectory to place html files in -# WEBDATAURL - location of your html files in a URL -# -# WITHOUT_IPAUTH - disable the IP address check after login -# WITHOUT_USER_INDEX - disable the user index display, which might -# confuse earlier versions of Internet Explorer -# WITH_MODIFY_QUOTA - enable domain admin to modify user quotas -# WITH_DOMAIN_AUTOFILL - autofill the domain on login page based on the -# hostname -# WITHOUT_IDX_SQL - disable the SQL support for mailing lists -# WITH_HELP - display help links on login page -# WITH_SPAM_DETECTION - allow users to enable/disable spam checking -# SPAM_COMMAND - the command to use to check for spam; -# default is "|preline /usr/local/bin/maildrop /etc/mailfilter" -# do not forget the "|" at the start -# - -CGIBINDIR?= www/cgi-bin.default -CGIBINSUBDIR?= qmailadmin -CGIBINURL?= /cgi-bin -WEBDATADIR?= www/data.default -WEBDATASUBDIR?= qmailadmin -WEBDATAURL?= - -PLIST_SUB+= CGIBINDIR="${CGIBINDIR}" CGIBINSUBDIR="${CGIBINSUBDIR}" \ - WEBDATADIR="${WEBDATADIR}" WEBDATASUBDIR="${WEBDATASUBDIR}" - -.include <bsd.port.pre.mk> - -# End of user-configurable variables - -CONFIGURE_ARGS+= \ - --enable-qmaildir=${QMAIL_PREFIX} \ - --enable-htmldir=${PREFIX}/${WEBDATADIR}/${WEBDATASUBDIR} \ - --enable-imagedir=${PREFIX}/${WEBDATADIR}/${WEBDATASUBDIR}/images \ - --enable-imageurl=${WEBDATAURL}/${WEBDATASUBDIR}/images \ - --enable-htmllibdir=${DATADIR} \ - --enable-cgibindir=${PREFIX}/${CGIBINDIR}/${CGIBINSUBDIR} \ - --enable-cgipath=${CGIBINURL}/${CGIBINSUBDIR}/qmailadmin \ - --enable-vpopmaildir=${LOCALBASE}/vpopmail \ - --enable-autoresponder-path=${LOCALBASE}/bin \ - --enable-ezmlmdir=${LOCALBASE}/bin - -.if defined(WITHOUT_IPAUTH) -CONFIGURE_ARGS+= --disable-ipauth -.endif - -.if defined(WITHOUT_USER_INDEX) -CONFIGURE_ARGS+= --disable-user-index -.endif - -.if defined(WITH_MODIFY_QUOTA) -CONFIGURE_ARGS+= --enable-modify-quota -.endif - -.if defined(WITH_DOMAIN_AUTOFILL) -CONFIGURE_ARGS+= --enable-domain-autofill -.endif - -.if defined(WITHOUT_IDX_SQL) -CONFIGURE_ARGS+= --disable-ezmlm-mysql -.endif - -.if defined(WITH_HELP) -CONFIGURE_ARGS+= --enable-help -.endif - -.if defined(WITH_SPAM_DETECTION) -CONFIGURE_ARGS+= --enable-modify-spam -.if defined(SPAM_COMMAND) -CONFIGURE_ARGS+= --enable-spam-command="${SPAM_COMMAND}" -.endif -.endif - -.include <bsd.port.post.mk> |