diff options
author | reed <reed> | 2004-05-06 22:34:27 +0000 |
---|---|---|
committer | reed <reed> | 2004-05-06 22:34:27 +0000 |
commit | a792853f88a770e5e9be7dcba4b6eced176bdad6 (patch) | |
tree | 077538f6a76ad7190fa1be33b47b631058d4e312 | |
parent | 5a3908bf16d73fd6b84210398453f68cb6f18044 (diff) | |
download | pkgsrc-a792853f88a770e5e9be7dcba4b6eced176bdad6.tar.gz |
Use @PKG_SYSCONFDIR@ instead of @PREFIX@/etc/exim
for location of configure script check in the exim rc.d script.
Bump PKGREVISION.
-rw-r--r-- | mail/exim3/Makefile | 3 | ||||
-rw-r--r-- | mail/exim3/files/exim.sh | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mail/exim3/Makefile b/mail/exim3/Makefile index 5fdfac8098c..9d39901e2e5 100644 --- a/mail/exim3/Makefile +++ b/mail/exim3/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2003/12/04 05:14:30 grant Exp $ +# $NetBSD: Makefile,v 1.5 2004/05/06 22:34:27 reed Exp $ DISTNAME= exim-3.36 +PKGREVISION= 1 CATEGORIES= mail net MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim3/ \ http://public.planetmirror.com.au/pub/exim/exim3/ diff --git a/mail/exim3/files/exim.sh b/mail/exim3/files/exim.sh index 3976e3a2099..4ff11db7fa8 100644 --- a/mail/exim3/files/exim.sh +++ b/mail/exim3/files/exim.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: exim.sh,v 1.2 2003/12/18 02:30:54 grant Exp $ +# $NetBSD: exim.sh,v 1.3 2004/05/06 22:34:27 reed Exp $ # # PROVIDE: mail # REQUIRE: LOGIN @@ -12,7 +12,7 @@ exim_flags=${exim_flags-"-bd -q30m"} rcvar=$name command="@PREFIX@/sbin/${name}" pidfile="/var/run/${name}.pid" -required_files="@PREFIX@/etc/exim/configure" +required_files="@PKG_SYSCONFDIR@/configure" load_rc_config $name run_rc_command "$1" |