diff options
author | sbd <sbd@pkgsrc.org> | 2012-06-22 05:01:38 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-06-22 05:01:38 +0000 |
commit | 73144f8fd84478dd1e3f85e483aab293c2432549 (patch) | |
tree | f24a428397442d19cd7e5e91981294e61732b39a /databases | |
parent | 8463e2ac3eafe6086c8b385919328342e29589fc (diff) | |
download | pkgsrc-73144f8fd84478dd1e3f85e483aab293c2432549.tar.gz |
Make package honor PKGMANDIR.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/luma/Makefile | 5 | ||||
-rw-r--r-- | databases/luma/distinfo | 3 | ||||
-rw-r--r-- | databases/luma/patches/patch-ab | 13 |
3 files changed, 5 insertions, 16 deletions
diff --git a/databases/luma/Makefile b/databases/luma/Makefile index 2b1951d5bcd..d797c50594f 100644 --- a/databases/luma/Makefile +++ b/databases/luma/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2012/04/08 18:05:44 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2012/06/22 05:01:38 sbd Exp $ DISTNAME= luma-2.3 PKGREVISION= 8 @@ -11,6 +11,7 @@ HOMEPAGE= http://luma.sourceforge.net/ COMMENT= LDAP browser PKG_DESTDIR_SUPPORT= user-destdir +AUTO_MKDIRS= yes SUBST_CLASSES+= luma SUBST_STAGE.luma= pre-configure @@ -27,6 +28,8 @@ do-build: do-install: rm ${WRKSRC}/bin/luma.orig cd ${WRKSRC} && ${PYTHONBIN} install.py --prefix=${DESTDIR}${PREFIX} + cd ${WRKSRC} && \ + ${INSTALL_MAN} man/man1/luma.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 .include "../../databases/py-ldap/buildlink3.mk" .include "../../lang/python/application.mk" diff --git a/databases/luma/distinfo b/databases/luma/distinfo index 664bcd02260..3f865632881 100644 --- a/databases/luma/distinfo +++ b/databases/luma/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.4 2010/11/17 17:42:56 shattered Exp $ +$NetBSD: distinfo,v 1.5 2012/06/22 05:01:38 sbd Exp $ SHA1 (luma-2.3.tar.bz2) = c6641ddd6689f3c02086ce500ee5799b873eeaab RMD160 (luma-2.3.tar.bz2) = 434291342dc5fb7ed4981211c383dd78e5f7d3d3 Size (luma-2.3.tar.bz2) = 648383 bytes SHA1 (patch-aa) = aa6493c3f6caea83b4b3b30c6063db0ee51540bd -SHA1 (patch-ab) = b45fdc3d00c1b7a06d77d7f36039451e77fbb962 diff --git a/databases/luma/patches/patch-ab b/databases/luma/patches/patch-ab deleted file mode 100644 index 20dc4fac4ec..00000000000 --- a/databases/luma/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2010/11/17 17:42:56 shattered Exp $ - ---- install.py.orig 2006-03-14 16:16:25.000000000 +0000 -+++ install.py -@@ -98,7 +98,7 @@ def doInstall(): - print "Copy program files...\n" - - try: -- for tmpDir in ["bin", "lib", "share"]: -+ for tmpDir in ["bin", "lib", "man", "share"]: - a = Popen3("cp -R " + tmpDir + " " + prefixDir) - while a.poll() == -1: - pass |