diff options
author | joerg <joerg@pkgsrc.org> | 2009-02-16 18:21:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-02-16 18:21:24 +0000 |
commit | fb36e476d037796f00bc9256a9c48b08061f0d77 (patch) | |
tree | 3f54881576258ca298f0dc3f6d845f050af9e0f9 /mail | |
parent | c303bc2cbdf1dd1461030b9b4ea2d7d36a205393 (diff) | |
download | pkgsrc-fb36e476d037796f00bc9256a9c48b08061f0d77.tar.gz |
DESTDIR support.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/oe2mbx/Makefile | 4 | ||||
-rw-r--r-- | mail/oe2mbx/distinfo | 4 | ||||
-rw-r--r-- | mail/oe2mbx/patches/patch-aa | 6 |
3 files changed, 8 insertions, 6 deletions
diff --git a/mail/oe2mbx/Makefile b/mail/oe2mbx/Makefile index 47727aced49..fdd63bd6a7b 100644 --- a/mail/oe2mbx/Makefile +++ b/mail/oe2mbx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2007/02/22 19:20:05 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2009/02/16 18:25:20 joerg Exp $ # DISTNAME= oe2mbx-1.21 @@ -9,6 +9,8 @@ MAINTAINER= zuntum@NetBSD.org HOMEPAGE= http://web.archive.org/2/www.gpl.no/liboe/ COMMENT= Outlook Express messages to the Unix mailbox format converter +PKG_DESTDIR_SUPPORT= user-destdir + # assumes fpos_t is an integral type NOT_FOR_PLATFORM= Linux-*-* diff --git a/mail/oe2mbx/distinfo b/mail/oe2mbx/distinfo index b5de2a592d1..3dfbcba3546 100644 --- a/mail/oe2mbx/distinfo +++ b/mail/oe2mbx/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 09:59:25 agc Exp $ +$NetBSD: distinfo,v 1.4 2009/02/16 18:25:20 joerg Exp $ SHA1 (oe2mbx-1.21.tar.gz) = e3931f0eb8c27c4ba0f1118e6d3bb7342ec172e2 RMD160 (oe2mbx-1.21.tar.gz) = 147b02fac16d2d5124ee069f2b11c236baf00235 Size (oe2mbx-1.21.tar.gz) = 22817 bytes -SHA1 (patch-aa) = 0b1d3ffa42263a21c8449421c3402c146f9e7d7f +SHA1 (patch-aa) = b43592c823057f57ac091449c8365995c3027440 diff --git a/mail/oe2mbx/patches/patch-aa b/mail/oe2mbx/patches/patch-aa index 226a08eca3a..1ec7c72af86 100644 --- a/mail/oe2mbx/patches/patch-aa +++ b/mail/oe2mbx/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1 2005/02/05 16:27:39 zuntum Exp $ +$NetBSD: patch-aa,v 1.2 2009/02/16 18:25:20 joerg Exp $ --- makefile.orig Sat Jun 17 17:30:36 2000 +++ makefile @@ -27,8 +27,8 @@ $NetBSD: patch-aa,v 1.1 2005/02/05 16:27:39 zuntum Exp $ install : - test -e bin/* && install bin/* $(BINDIR) && echo oe2mbx binary installed || echo oe2mbx binary not prepared - test -e lib/*.so && install lib/*.so $(LIBDIR) && install src/*.h $(INCLUDEDIR) && echo liboe library installed || echo liboe library not prepared -+ test -r bin/* && ${INSTALL_PROGRAM} bin/* $(BINDIR) && echo oe2mbx binary installed || echo oe2mbx binary not prepared -+ test -r lib/*.so && ${INSTALL_LIB} lib/*.so $(LIBDIR) && ${INSTALL_DATA} src/*.h $(INCLUDEDIR) && echo liboe library installed || echo liboe library not prepared ++ test -r bin/* && ${INSTALL_PROGRAM} bin/* ${DESTDIR}$(BINDIR) && echo oe2mbx binary installed || echo oe2mbx binary not prepared ++ test -r lib/*.so && ${INSTALL_LIB} lib/*.so ${DESTDIR}$(LIBDIR) && ${INSTALL_DATA} src/*.h ${DESTDIR}$(INCLUDEDIR) && echo liboe library installed || echo liboe library not prepared clean : - test -e bin/* && rm -f bin/* || test . - test -e lib/* && rm -f lib/* || test . |