diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-12-19 18:27:06 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-12-19 18:27:06 +0000 |
commit | c36d39ccbda8e4d783a92ecefadcc299a093164b (patch) | |
tree | eecdfb6d45945162b4cf206b5c9e027ffcf566e1 /media-sound/gstreamripper | |
parent | Sparc stable, Bug #251656. (diff) | |
download | gentoo-2-c36d39ccbda8e4d783a92ecefadcc299a093164b.tar.gz gentoo-2-c36d39ccbda8e4d783a92ecefadcc299a093164b.tar.bz2 gentoo-2-c36d39ccbda8e4d783a92ecefadcc299a093164b.zip |
Dont let the build system install the doc itselfs, they are installed in a messed up location, bug #247952; we dodoc them already
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.8 x86_64)
Diffstat (limited to 'media-sound/gstreamripper')
-rw-r--r-- | media-sound/gstreamripper/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/gstreamripper/gstreamripper-0.2.ebuild | 10 |
2 files changed, 14 insertions, 5 deletions
diff --git a/media-sound/gstreamripper/ChangeLog b/media-sound/gstreamripper/ChangeLog index d95b29aca02a..25110d1fb86d 100644 --- a/media-sound/gstreamripper/ChangeLog +++ b/media-sound/gstreamripper/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/gstreamripper -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gstreamripper/ChangeLog,v 1.12 2007/02/22 01:03:17 peper Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gstreamripper/ChangeLog,v 1.13 2008/12/19 18:27:06 aballier Exp $ + + 19 Dec 2008; Alexis Ballier <aballier@gentoo.org> + gstreamripper-0.2.ebuild: + Dont let the build system install the doc itselfs, they are installed in a + messed up location, bug #247952; we dodoc them already 22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/media-sound/gstreamripper/gstreamripper-0.2.ebuild b/media-sound/gstreamripper/gstreamripper-0.2.ebuild index 8ada3e6b7ed8..a071c056b226 100644 --- a/media-sound/gstreamripper/gstreamripper-0.2.ebuild +++ b/media-sound/gstreamripper/gstreamripper-0.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gstreamripper/gstreamripper-0.2.ebuild,v 1.11 2006/10/28 01:41:12 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gstreamripper/gstreamripper-0.2.ebuild,v 1.12 2008/12/19 18:27:06 aballier Exp $ IUSE="" @@ -23,6 +23,10 @@ DEPEND="${RDEPEND} dev-util/pkgconfig" src_install() { - make DESTDIR="${D}" install || die + # override gstreamripperxdoc_DATA because they get installed in a wrong + # location and we already dodoc them + emake DESTDIR="${D}" gstreamripperxdoc_DATA="" install || die dodoc AUTHORS ChangeLog NEWS README TODO + # it creates that dir anyway... + rm -rf "${D}/usr/doc/" } |