diff options
author | 2009-11-23 03:46:41 +0000 | |
---|---|---|
committer | 2009-11-23 03:46:41 +0000 | |
commit | 687d200ca8122564fd95f4ec55b9ebf743529d22 (patch) | |
tree | 5bcf105559b98ef5c64fcb97e5627dc603fc9c49 /dev-util/indent/files | |
parent | strip-flags for bug #293927 (diff) | |
download | gentoo-2-687d200ca8122564fd95f4ec55b9ebf743529d22.tar.gz gentoo-2-687d200ca8122564fd95f4ec55b9ebf743529d22.tar.bz2 gentoo-2-687d200ca8122564fd95f4ec55b9ebf743529d22.zip |
Update license. Do apply the Makefile.am patch because we do need to update the (empty) man file (thanks to Drake Wyrm (bug #76610). At the same time, do not install the undocumented texinfo2man. Bumping because we do need to get the man page out there and because perhaps people want texinfo2man after all.
(Portage version: 2.2_rc51/cvs/Linux i686)
Diffstat (limited to 'dev-util/indent/files')
-rw-r--r-- | dev-util/indent/files/2.2.10-man.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-util/indent/files/2.2.10-man.patch b/dev-util/indent/files/2.2.10-man.patch new file mode 100644 index 000000000000..1546f69bb931 --- /dev/null +++ b/dev-util/indent/files/2.2.10-man.patch @@ -0,0 +1,22 @@ +* Set EXTRA_PROGRAMS to build texinfo2man but not install it. +* Make sure it's built before it's used (thanks to Drake Wyrm). + + +--- indent-2.2.10/man/Makefile.am.orig 2008-03-11 19:50:42.000000000 +0100 ++++ indent-2.2.10/man/Makefile.am 2009-11-23 04:11:17.000000000 +0100 +@@ -1,6 +1,6 @@ + mandir = @mandir@ + +-bin_PROGRAMS = texinfo2man ++EXTRA_PROGRAMS = texinfo2man + texinfo2man_SOURCES = texinfo2man.c + man_MANS = @PACKAGE@.1 + +@@ -10,6 +10,6 @@ + + MAINTAINERCLEANFILES = @PACKAGE@.1 Makefile.in texinfo2man + +-@PACKAGE@.1: ${srcdir}/@PACKAGE@.1.in ${srcdir}/../doc/@PACKAGE@.texinfo texinfo2man.c Makefile.am ++@PACKAGE@.1: ${srcdir}/@PACKAGE@.1.in ${srcdir}/../doc/@PACKAGE@.texinfo texinfo2man Makefile.am + ./texinfo2man ${srcdir}/@PACKAGE@.1.in ${srcdir}/../doc/@PACKAGE@.texinfo > $@ + |