diff options
author | schmonz <schmonz@pkgsrc.org> | 2010-03-15 17:28:10 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2010-03-15 17:28:10 +0000 |
commit | 1639afb31aaf003a4b11d65c02b8cccb27c6f8b4 (patch) | |
tree | 0774357fb6bdaebccbcaf2e982cc260fcdf2647b /mail/ezmlm | |
parent | 69d933a3b14021c46a3e96090d87d38b79ef8783 (diff) | |
download | pkgsrc-1639afb31aaf003a4b11d65c02b8cccb27c6f8b4.tar.gz |
DESTDIR support.
Diffstat (limited to 'mail/ezmlm')
-rw-r--r-- | mail/ezmlm/Makefile | 4 | ||||
-rw-r--r-- | mail/ezmlm/Makefile.common | 4 | ||||
-rw-r--r-- | mail/ezmlm/distinfo | 3 | ||||
-rw-r--r-- | mail/ezmlm/patches/patch-aa | 17 |
4 files changed, 25 insertions, 3 deletions
diff --git a/mail/ezmlm/Makefile b/mail/ezmlm/Makefile index f59a4e2da76..41ab5c07edf 100644 --- a/mail/ezmlm/Makefile +++ b/mail/ezmlm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2009/05/19 09:07:13 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2010/03/15 17:28:46 schmonz Exp $ # .include "../../mail/ezmlm/Makefile.common" @@ -13,9 +13,11 @@ LICENSE= public-domain CONFLICTS= ezmlm-idx-[0-9]* +PKG_DESTDIR_SUPPORT= user-destdir PKG_INSTALLATION_TYPES= overwrite pkgviews DJB_RESTRICTED= no +DJB_CONFIG_CMDS= ${ECHO} ${DESTDIR:Q} > conf-destdir INSTALLATION_DIRS= bin man ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 ${PKGMANDIR}/cat1 ${PKGMANDIR}/cat5 diff --git a/mail/ezmlm/Makefile.common b/mail/ezmlm/Makefile.common index 55fb2404c6b..37960dc476d 100644 --- a/mail/ezmlm/Makefile.common +++ b/mail/ezmlm/Makefile.common @@ -1,5 +1,7 @@ -# $NetBSD: Makefile.common,v 1.9 2006/01/05 03:00:21 schmonz Exp $ +# $NetBSD: Makefile.common,v 1.10 2010/03/15 17:28:46 schmonz Exp $ # +# used by mail/ezmlm/Makefile +# used by mail/ezmlm-idx/Makefile EZMLM_VERS= ezmlm-0.53 diff --git a/mail/ezmlm/distinfo b/mail/ezmlm/distinfo index e3648fc16dc..718c530665d 100644 --- a/mail/ezmlm/distinfo +++ b/mail/ezmlm/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/02/24 09:59:22 agc Exp $ +$NetBSD: distinfo,v 1.3 2010/03/15 17:28:46 schmonz Exp $ SHA1 (ezmlm-0.53.tar.gz) = 3a7b618737fed8b774bec69c272d70f4142c1e30 RMD160 (ezmlm-0.53.tar.gz) = 6d366de2d7028a984ba454f1bec9d2d9f495c88b Size (ezmlm-0.53.tar.gz) = 62693 bytes +SHA1 (patch-aa) = a6ca78b9862d2c87b8ff0ea4bb3efbba891715a9 diff --git a/mail/ezmlm/patches/patch-aa b/mail/ezmlm/patches/patch-aa new file mode 100644 index 00000000000..b1f89b9d31f --- /dev/null +++ b/mail/ezmlm/patches/patch-aa @@ -0,0 +1,17 @@ +$NetBSD: patch-aa,v 1.1 2010/03/15 17:28:46 schmonz Exp $ + +--- Makefile.orig 1997-06-30 03:11:54.000000000 +0000 ++++ Makefile +@@ -610,9 +610,9 @@ compile seek_set.c seek_set.c seek.h see + ./compile seek_set.c + + setup: \ +-it man install conf-bin conf-man +- ./install "`head -1 conf-bin`" < BIN +- ./install "`head -1 conf-man`" < MAN ++it man install conf-bin conf-man conf-destdir ++ ./install "`head -1 conf-destdir``head -1 conf-bin`" < BIN ++ ./install "`head -1 conf-destdir``head -1 conf-man`" < MAN + + sgetopt.0: \ + sgetopt.3 |