diff options
author | shattered <shattered@pkgsrc.org> | 2010-11-22 20:02:50 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2010-11-22 20:02:50 +0000 |
commit | 660d96dc69357bbee87c4c3821f0982115aef68b (patch) | |
tree | 870bb11f1b3ed17956303c7b5dadb0b1f90e238a /lang | |
parent | 5e44ab96a6910a3dffa10504a0ebe6328a98393a (diff) | |
download | pkgsrc-660d96dc69357bbee87c4c3821f0982115aef68b.tar.gz |
Install manpages in man/, not share/man/
Diffstat (limited to 'lang')
-rw-r--r-- | lang/librep/Makefile | 3 | ||||
-rw-r--r-- | lang/librep/PLIST | 10 | ||||
-rw-r--r-- | lang/librep/distinfo | 3 | ||||
-rw-r--r-- | lang/librep/patches/patch-aa | 25 |
4 files changed, 34 insertions, 7 deletions
diff --git a/lang/librep/Makefile b/lang/librep/Makefile index 0ae93b84805..600b3f42dd6 100644 --- a/lang/librep/Makefile +++ b/lang/librep/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.51 2010/08/21 16:55:06 asau Exp $ +# $NetBSD: Makefile,v 1.52 2010/11/22 20:02:50 shattered Exp $ # DISTNAME= librep-0.90.5 +PKGREVISION= 1 CATEGORIES= lang devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=librep/} EXTRACT_SUFX= .tar.bz2 diff --git a/lang/librep/PLIST b/lang/librep/PLIST index a675013d07e..478c0237895 100644 --- a/lang/librep/PLIST +++ b/lang/librep/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.13 2010/08/21 16:55:06 asau Exp $ +@comment $NetBSD: PLIST,v 1.14 2010/11/22 20:02:50 shattered Exp $ bin/rep bin/rep-remote bin/rep-xgettext @@ -35,11 +35,11 @@ lib/rep/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/timers.la lib/rep/${MACHINE_GNU_PLATFORM}/install-aliases lib/rep/${MACHINE_GNU_PLATFORM}/libtool lib/rep/${MACHINE_GNU_PLATFORM}/rules.mk +man/man1/rep-remote.1.gz +man/man1/rep-xgettext.1.gz +man/man1/rep.1.gz +man/man1/repdoc.1.gz share/emacs/site-lisp/rep-debugger.el -share/man/man1/rep-remote.1.gz -share/man/man1/rep-xgettext.1.gz -share/man/man1/rep.1.gz -share/man/man1/repdoc.1.gz share/rep/${PKGVERSION}/lisp/cgi-get.jl share/rep/${PKGVERSION}/lisp/cgi-get.jlc share/rep/${PKGVERSION}/lisp/compiler.jl diff --git a/lang/librep/distinfo b/lang/librep/distinfo index 92ebf6af66a..3d81fd9a04f 100644 --- a/lang/librep/distinfo +++ b/lang/librep/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.15 2010/08/21 16:55:06 asau Exp $ +$NetBSD: distinfo,v 1.16 2010/11/22 20:02:50 shattered Exp $ SHA1 (librep-0.90.5.tar.bz2) = 01d6d7b0713743b07a17b4512c7ef8e97aed99d1 RMD160 (librep-0.90.5.tar.bz2) = d65ec5dc49a3dce5ef01f745809091c947c11b1e Size (librep-0.90.5.tar.bz2) = 672253 bytes +SHA1 (patch-aa) = 8c467655c9ce81abd89f25db1a8450f0185eb757 diff --git a/lang/librep/patches/patch-aa b/lang/librep/patches/patch-aa new file mode 100644 index 00000000000..f4b802ef359 --- /dev/null +++ b/lang/librep/patches/patch-aa @@ -0,0 +1,25 @@ +$NetBSD: patch-aa,v 1.12 2010/11/22 20:10:35 shattered Exp $ + +--- man/Makefile.in.orig 2010-01-08 18:30:43.000000000 +0000 ++++ man/Makefile.in +@@ -51,17 +51,17 @@ install : librep.info installdirs + -install-info --info-dir=$(DESTDIR)$(infodir) librep.info + for f in rep*.1; do \ + gzip $$f -c > $$f.gz; \ +- $(INSTALL_DATA) $$f.gz $(DESTDIR)$(prefix)/share/man/man1/; \ ++ $(INSTALL_DATA) $$f.gz $(DESTDIR)$(prefix)/man/man1/; \ + done + + installdirs : mkinstalldirs + $(SHELL) $< $(DESTDIR)$(infodir) +- $(SHELL) $< $(DESTDIR)$(prefix)/share/man/man1/ ++ $(SHELL) $< $(DESTDIR)$(prefix)/man/man1/ + + uninstall : + rm -f $(DESTDIR)$(infodir)/librep.info* + -install-info --remove --info-dir=$(DESTDIR)$(infodir) librep.info +- rm -f $(DESTDIR)$(prefix)/share/man/man1/rep* ++ rm -f $(DESTDIR)$(prefix)/man/man1/rep* + + clean : + rm -f *~ librep.info* librep.?? librep.??? rep*.1.gz |