pkgsrc/mail/mailagent/Makefile
agc d52dd5005a At present, if there is a pre-<target> or post-<target> script in
the scripts/ directory, it will be run automatically as part of
the build process, by bsd.pkg.mk.  There are now exactly 5 packages
in pkgsrc which use this facility, and yet, for every package build,
the existence of a script is checked by bsd.pkg.mk once before the
target is executed, and once afterwards. This incurs needless
overhead.

Move the separate pre- and post- script handling out of bsd.pkg.mk into
the individual package Makefiles, where it's much more obvious what is
happening, anyway.
2001-10-26 14:09:59 +00:00

46 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2001/10/26 14:10:01 agc Exp $
# FreeBSD: ports/mail/mailagent/Makefile,v 1.28 1999/08/31 06:47:24 mharo Exp
#
DISTNAME= mailagent-3.0.73
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:S/by-module/by-authors\/id\/RAM/g}
MAINTAINER= itojun@itojun.org
COMMENT= Sophisticated automatic mail-processing tool
USE_PERL5= # defined
NO_PACKAGE= "Correct FQDN needs to be hardcoded"
IS_INTERACTIVE= # defined
HAS_CONFIGURE= # defined
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
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
pre-configure:
cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/pre-configure
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mailagent
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mailagent/misc
${CP} -pR ${WRKSRC}/misc/* ${PREFIX}/share/examples/mailagent/misc
@${LN} -fs ${PREFIX}/lib/mailagent/examples \
${PREFIX}/share/examples/mailagent/agent
.include "../../mk/bsd.pkg.mk"