diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-05-21 22:36:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-05-21 22:36:22 +0000 |
commit | 93589443c26389a8c4736912dbf50295a0380859 (patch) | |
tree | be94d67ea5b0e9654b7462e91971671f8300ea28 /sci-geosciences | |
parent | relocate and enforce standard for .love files (diff) | |
download | gentoo-2-93589443c26389a8c4736912dbf50295a0380859.tar.gz gentoo-2-93589443c26389a8c4736912dbf50295a0380859.tar.bz2 gentoo-2-93589443c26389a8c4736912dbf50295a0380859.zip |
Do not regen man pages since the tarball includes them.
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/gpsd/ChangeLog | 6 | ||||
-rw-r--r-- | sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch | 13 | ||||
-rw-r--r-- | sci-geosciences/gpsd/gpsd-3.4.ebuild | 3 |
3 files changed, 20 insertions, 2 deletions
diff --git a/sci-geosciences/gpsd/ChangeLog b/sci-geosciences/gpsd/ChangeLog index 9e97caa7d0c4..892b408792f9 100644 --- a/sci-geosciences/gpsd/ChangeLog +++ b/sci-geosciences/gpsd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-geosciences/gpsd # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.83 2012/02/09 22:14:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.84 2012/05/21 22:36:22 vapier Exp $ + + 21 May 2012; Mike Frysinger <vapier@gentoo.org> gpsd-3.4.ebuild, + +files/gpsd-3.4-no-man-gen.patch: + Do not regen man pages since the tarball includes them. *gpsd-9999 (09 Feb 2012) diff --git a/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch b/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch new file mode 100644 index 000000000000..20a3b707a4c3 --- /dev/null +++ b/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch @@ -0,0 +1,13 @@ +the scons logic is dumb and will always regenerate the man pages. +forcibly disable that as the releases contain the man pages. + +--- a/SConstruct ++++ b/SConstruct +@@ -575,6 +575,7 @@ + manbuilder = "xmlto man $SOURCE; mv `basename $TARGET` $TARGET" + else: + announce("Neither xsltproc nor xmlto found, documentation cannot be built.") ++manbuilder = htmlbuilder = False + if manbuilder: + env['BUILDERS']["Man"] = Builder(action=manbuilder) + env['BUILDERS']["HTML"] = Builder(action=htmlbuilder, diff --git a/sci-geosciences/gpsd/gpsd-3.4.ebuild b/sci-geosciences/gpsd/gpsd-3.4.ebuild index 6ebf24fc1b38..5e719e92baf4 100644 --- a/sci-geosciences/gpsd/gpsd-3.4.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-3.4.ebuild,v 1.2 2012/02/09 22:14:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-3.4.ebuild,v 1.3 2012/05/21 22:36:22 vapier Exp $ EAPI="4" @@ -66,6 +66,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-3.4-strptime.patch epatch "${FILESDIR}"/${PN}-3.4-chrpath.patch epatch "${FILESDIR}"/${PN}-3.4-always-install-man-pages.patch + epatch "${FILESDIR}"/${PN}-3.4-no-man-gen.patch # Avoid useless -L paths to the install dir sed -i \ |