mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
65ab34a667
Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# New ports collection makefile for: distribute
|
|
# Version required: 2.1pl24
|
|
# Date created: 1 Oct 1997
|
|
# Whom: itojun@itojun.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= distribute-2.1-pl19
|
|
PKGNAME= distribute-2.1.24
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.foretune.co.jp/pub/network/mail/distribute/
|
|
|
|
PATCH_SITES= ${MASTER_SITES}BETA/
|
|
PATCHFILES= patch.20.gz patch.21e.gz patch.22e.gz patch.23e.gz patch.24e.gz
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
|
|
WRKSRC= ${WRKDIR}/distribute-pl19
|
|
MAN1= distribute.1
|
|
DIST_SUBDIR= distribute
|
|
# Compile time configuration required.
|
|
IS_INTERACTIVE= YES
|
|
|
|
# customize below if you would like to
|
|
MAILINGLIST_DIR= ${PREFIX}/majordomo/lists
|
|
MAJORDOMO_DIR= ${PREFIX}/majordomo # mail/majordomo likes this
|
|
MAJORDOMO_LIST_DIR= ${MAJORDOMO_DIR}/lists
|
|
ARCHIVE_DIR= /var/spool/mail-list
|
|
DEF_DOMAINNAME= your.domain.here
|
|
|
|
MAKE_ENV+= DEFAULTCONFIG="-DDEF_SEQ_PATH=\\\"$(MAILINGLIST_DIR)\\\" \
|
|
-DDEF_RECIPIENT_PATH=\\\"$(MAILINGLIST_DIR)\\\" \
|
|
-DDEF_MAJORDOMO_RECIPIENT_PATH=\\\"$(MAJORDOMO_LIST_DIR)\\\" \
|
|
-DDEF_DOMAINNAME=\\\"$(DEF_DOMAINNAME)\\\" \
|
|
-DDEF_ARCHIVE_PATH=\\\"$(ARCHIVE_DIR)\\\"" \
|
|
INSTALL="${INSTALL}" \
|
|
INSTALL_MAN="${INSTALL_MAN}"
|
|
|
|
post-build: message
|
|
post-install: message
|
|
message::
|
|
@${ECHO} "===> distribute was compiled with the following configuration:"
|
|
@${ECHO} " membership file directory: ${MAILINGLIST_DIR}"
|
|
@${ECHO} " membership file directory: ${MAJORDOMO_LIST_DIR} (for majordomo)"
|
|
@${ECHO} " archiving directory: ${ARCHIVE_DIR}"
|
|
@${ECHO} " if necessery, override them and perform compilation again."
|
|
@${ECHO} " there's no way to override them at runtime."
|
|
|
|
.include <bsd.port.mk>
|