diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 2002-08-12 00:36:24 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 2002-08-12 00:36:24 +0000 |
commit | fb8c3d92c1ae8c77641df6725de19abd57524e5b (patch) | |
tree | cae1d32a1e73774df80be50b2f6ccdf650031d14 /mail/mailagent | |
parent | Fix icons dir location in default config file (diff) |
Adjust the CONFIG_ARGS so that
1. AN option which is no longer used won't be passed to the configure script.
2. ${CFLAGS} is respected when compiling any programs within the port.
Remove an unnecessary ${MKDIR} line.
Submitted by: Alex Kapranoff <kapr@acm.org>
Notes
Notes:
svn path=/head/; revision=64393
Diffstat (limited to 'mail/mailagent')
-rw-r--r-- | mail/mailagent/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/mailagent/Makefile b/mail/mailagent/Makefile index 6c8aee89e871..0508e9d72a0b 100644 --- a/mail/mailagent/Makefile +++ b/mail/mailagent/Makefile @@ -19,10 +19,11 @@ IS_INTERACTIVE= yes HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure CONFIGURE_ARGS= -dres \ - -Dperlpath='${PERL5}' \ + -Dperlpath='${PERL}' \ + -Dccflags='${CFLAGS}' \ + -Dd_flockonly='define' \ -Dutmp='/var/run/utmp' \ - -Dprefix='${PREFIX}' -Dmansrc='${PREFIX}/man/man1' \ - -Dnotifypatches='false' + -Dprefix='${PREFIX}' -Dmansrc='${PREFIX}/man/man1' MAKE_ENV= PATH=`dirname ${PERL5}`:${PATH} INSTALL_TARGET= install install.man @@ -51,7 +52,6 @@ post-patch: misc/news/newsgate) post-install: - @${MKDIR} ${PREFIX}/share/examples/mailagent @${MKDIR} ${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 |