diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2010-06-26 14:26:12 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2010-06-26 14:26:12 +0000 |
commit | 2f7476f2596bdf46400d49835d0558d6e6ebdfd8 (patch) | |
tree | 3a956a8d19eab990268811f34e54fd1549afa2c2 /media-libs/coin | |
parent | Version bump (diff) | |
download | gentoo-2-2f7476f2596bdf46400d49835d0558d6e6ebdfd8.tar.gz gentoo-2-2f7476f2596bdf46400d49835d0558d6e6ebdfd8.tar.bz2 gentoo-2-2f7476f2596bdf46400d49835d0558d6e6ebdfd8.zip |
Do not install manpages (just htmldocs), revbump for previous changes
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/coin')
-rw-r--r-- | media-libs/coin/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/coin/coin-3.1.3-r1.ebuild (renamed from media-libs/coin/coin-3.1.3.ebuild) | 13 |
2 files changed, 9 insertions, 12 deletions
diff --git a/media-libs/coin/ChangeLog b/media-libs/coin/ChangeLog index 661ff3ba039f..88a7c0f21f8a 100644 --- a/media-libs/coin/ChangeLog +++ b/media-libs/coin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/coin # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/coin/ChangeLog,v 1.34 2010/06/25 23:41:48 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/coin/ChangeLog,v 1.35 2010/06/26 14:26:12 reavertm Exp $ + +*coin-3.1.3-r1 (26 Jun 2010) + + 26 Jun 2010; Maciej Mrozowski <reavertm@gentoo.org> -coin-3.1.3.ebuild, + +coin-3.1.3-r1.ebuild: + Do not install manpages (just htmldocs), revbump for previous changes 25 Jun 2010; Maciej Mrozowski <reavertm@gentoo.org> coin-3.1.3.ebuild, metadata.xml: diff --git a/media-libs/coin/coin-3.1.3.ebuild b/media-libs/coin/coin-3.1.3-r1.ebuild index 56adffb11b69..e424fca147f1 100644 --- a/media-libs/coin/coin-3.1.3.ebuild +++ b/media-libs/coin/coin-3.1.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/coin/coin-3.1.3.ebuild,v 1.4 2010/06/25 23:41:48 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/coin/coin-3.1.3-r1.ebuild,v 1.1 2010/06/26 14:26:12 reavertm Exp $ EAPI=2 @@ -50,7 +50,6 @@ PATCHES=( ) src_configure() { - MANDIR=/usr/share/Coin/man # Unforunately it links to static expat... append-cppflags -I/usr/include/freetype2 -DUSE_SYSTEM_EXPAT # Prefer link-time linking over dlopen @@ -64,6 +63,7 @@ src_configure() { --disable-dl-zlib \ --disable-dyld \ --disable-loadlibrary \ + --disable-man \ --disable-java-wrapper \ --enable-3ds-import \ --enable-compact \ @@ -71,14 +71,12 @@ src_configure() { --enable-dl-spidermonkey \ --enable-system-expat \ --includedir="/usr/include/${PN}" \ - --mandir="${MANDIR}" \ --with-fontconfig \ --with-freetype \ $(use_with bzip2) \ $(use_enable debug) \ $(use_enable debug symbols) \ $(use_enable doc html) \ - $(use_enable doc man) \ $(use_enable javascript javascript-api) \ $(use_with javascript spidermonkey) \ $(use_enable openal sound) \ @@ -92,13 +90,6 @@ src_configure() { src_install() { base_src_install - if use doc; then - cat >"${T}/50coin" <<-__EOF__ -MANPATH=${MANDIR} -__EOF__ - doenvd "${T}/50coin" - fi - # Remove libtool files when not needed. use static-libs || rm -f "${D}"/usr/lib*/*.la } |