diff options
author | joerg <joerg@pkgsrc.org> | 2006-11-07 09:31:42 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-11-07 09:31:42 +0000 |
commit | 2b957b665aca30c9d58f5b9f546a2e19dbcf8c28 (patch) | |
tree | 96c505213cb5720d82a115b62250a1b51a49c72f /textproc/urlview | |
parent | 68bfdc47a0964fc1df7e78198e42a63de13995b6 (diff) | |
download | pkgsrc-2b957b665aca30c9d58f5b9f546a2e19dbcf8c28.tar.gz |
DESTDIR support. It is amazing how developers break features of automake
by not using the mechanisms automake already provides.
Diffstat (limited to 'textproc/urlview')
-rw-r--r-- | textproc/urlview/Makefile | 6 | ||||
-rw-r--r-- | textproc/urlview/distinfo | 3 | ||||
-rw-r--r-- | textproc/urlview/patches/patch-aa | 13 |
3 files changed, 20 insertions, 2 deletions
diff --git a/textproc/urlview/Makefile b/textproc/urlview/Makefile index f2b2d6342d8..c1fb4ea7bd9 100644 --- a/textproc/urlview/Makefile +++ b/textproc/urlview/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2005/04/11 21:47:43 tv Exp $ +# $NetBSD: Makefile,v 1.14 2006/11/07 09:31:42 joerg Exp $ DISTNAME= urlview-0.9 PKGREVISION= 2 @@ -11,6 +11,10 @@ MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/contrib/ \ MAINTAINER= tron@NetBSD.org COMMENT= Extract URLs from text files and display them in a menu +PKG_DESTDIR_SUPPORT= user-destdir + +INSTALLATION_DIRS= ${PKGMANDIR}/man1 + GNU_CONFIGURE= yes .include "../../devel/ncurses/buildlink3.mk" diff --git a/textproc/urlview/distinfo b/textproc/urlview/distinfo index 2d892019276..6304728da68 100644 --- a/textproc/urlview/distinfo +++ b/textproc/urlview/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 14:48:50 agc Exp $ +$NetBSD: distinfo,v 1.4 2006/11/07 09:31:42 joerg Exp $ SHA1 (urlview-0.9.tar.gz) = e366312a7dd04eb38909a36f854c502fbe81f4be RMD160 (urlview-0.9.tar.gz) = eafefdc7f1fe06f3f45a3f2a694c42dd833a178e Size (urlview-0.9.tar.gz) = 46685 bytes +SHA1 (patch-aa) = 59f2bcf9c980e839f344b31b410bba49e22db859 diff --git a/textproc/urlview/patches/patch-aa b/textproc/urlview/patches/patch-aa new file mode 100644 index 00000000000..d5e4daed4f3 --- /dev/null +++ b/textproc/urlview/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2006/11/07 09:31:42 joerg Exp $ + +--- Makefile.in.orig 2006-11-07 08:45:57.000000000 +0000 ++++ Makefile.in +@@ -318,7 +318,7 @@ maintainer-clean-generic clean mostlycle + + + install-data-local: +- $(INSTALL_DATA) urlview.man $(mandir)/man1/urlview.1 ++ $(INSTALL_DATA) urlview.man ${DESTDIR}$(mandir)/man1/urlview.1 + + # how to create a target for uninstall-data-local??? + |