mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
# New ports collection makefile for: mailagent
|
|
# Version required: 3.0pl65
|
|
# Date created: 23 Sep 1996
|
|
# Whom: Masafumi NAKANE <max@FreeBSD.ORG>
|
|
#
|
|
# $Id: Makefile,v 1.25 1998/09/19 10:49:02 max Exp $
|
|
#
|
|
|
|
DISTNAME= mailagent-3.0@65
|
|
PKGNAME= mailagent-3.0.65
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../../authors/id/RAM
|
|
|
|
MAINTAINER= max@FreeBSD.ORG
|
|
|
|
USE_PERL5= yes
|
|
NO_PACKAGE= "Correct FQDN needs to be hardcoded"
|
|
IS_INTERACTIVE= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= Configure
|
|
CONFIGURE_ARGS= -dres \
|
|
-Dperlpath='${PERL5}' \
|
|
-Dutmp='/var/run/utmp' \
|
|
-Dprefix='${PREFIX}' -Dmansrc='${PREFIX}/man/man1' \
|
|
-Dnotifypatches='false'
|
|
MAKE_ENV= PATH=`dirname ${PERL5}`:${PATH}
|
|
INSTALL_TARGET= install install.man
|
|
|
|
# Note that mailhelp.1 is intentionally left uncompressed as it is referred
|
|
# from several other man pages with .so macro.
|
|
MAN1= edusers.1 mailagent.1 maildist.1 \
|
|
maillist.1 mailpatch.1 package.1
|
|
|
|
pre-extract:
|
|
@if [ `${SH} -c umask` != 0022 ]; then \
|
|
${ECHO} "Please set umask to 022 before running make,"; \
|
|
${ECHO} "or mailagent will not build successfully."; \
|
|
${FALSE}; fi
|
|
@if [ `id -u` = 0 ]; then \
|
|
${ECHO} "Do not build mailagent as root or it won't pass the sanity tests."; \
|
|
${FALSE}; fi
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/examples/mailagent/agent
|
|
@${MKDIR} ${PREFIX}/share/examples/mailagent/misc
|
|
${INSTALL_DATA} ${WRKSRC}/agent/examples/* ${PREFIX}/share/examples/mailagent/agent
|
|
${CP} -pR ${WRKSRC}/misc/* ${PREFIX}/share/examples/mailagent/misc
|
|
|
|
.include <bsd.port.mk>
|