diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-04-19 14:18:15 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-04-19 14:18:15 +0000 |
commit | 85b17730060ec366c6df3938cf4441a63ee6640a (patch) | |
tree | d174bec510a154b480e339ab4aae8bc44a7d6308 /kde-misc | |
parent | Version bump, bug fix release. http://releases.xfce.org/feeds/project/libxfce4ui (diff) | |
download | gentoo-2-85b17730060ec366c6df3938cf4441a63ee6640a.tar.gz gentoo-2-85b17730060ec366c6df3938cf4441a63ee6640a.tar.bz2 gentoo-2-85b17730060ec366c6df3938cf4441a63ee6640a.zip |
Fix documentation directory wrt bug #316087
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'kde-misc')
-rw-r--r-- | kde-misc/kanyremote/ChangeLog | 6 | ||||
-rw-r--r-- | kde-misc/kanyremote/kanyremote-5.10.ebuild | 7 | ||||
-rw-r--r-- | kde-misc/kanyremote/kanyremote-5.11.ebuild | 12 |
3 files changed, 15 insertions, 10 deletions
diff --git a/kde-misc/kanyremote/ChangeLog b/kde-misc/kanyremote/ChangeLog index f6b83da18ca6..88527178ca9d 100644 --- a/kde-misc/kanyremote/ChangeLog +++ b/kde-misc/kanyremote/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-misc/kanyremote # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kanyremote/ChangeLog,v 1.8 2010/03/23 18:03:48 serkan Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kanyremote/ChangeLog,v 1.9 2010/04/19 14:18:15 hwoarang Exp $ + + 19 Apr 2010; Markos Chandras <hwoarang@gentoo.org> kanyremote-5.10.ebuild, + kanyremote-5.11.ebuild: + Fix documentation directory wrt bug #316087 21 Mar 2010; Serkan Kaba <serkan@gentoo.org> kanyremote-5.10.ebuild, kanyremote-5.11.ebuild: diff --git a/kde-misc/kanyremote/kanyremote-5.10.ebuild b/kde-misc/kanyremote/kanyremote-5.10.ebuild index 5fb0ce2ed7b4..9bbc0d1729d5 100644 --- a/kde-misc/kanyremote/kanyremote-5.10.ebuild +++ b/kde-misc/kanyremote/kanyremote-5.10.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kanyremote/kanyremote-5.10.ebuild,v 1.2 2010/03/21 21:03:49 serkan Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kanyremote/kanyremote-5.10.ebuild,v 1.3 2010/04/19 14:18:15 hwoarang Exp $ EAPI="2" -inherit eutils +inherit base DESCRIPTION="KDE frontend to Anyremote" HOMEPAGE="http://anyremote.sourceforge.net/" @@ -22,6 +22,9 @@ DEPEND=">=app-mobilephone/anyremote-4.4[bluetooth?] RDEPEND="${DEPEND}" src_prepare() { + #fix documentation directory wrt bug #316087 + sed -i "s/doc\/${PN}/doc\/${PF}/g" Makefile.am + eautoreconf # workaround to bluetooth check when bluetooth use flag is disabled ! use bluetooth && epatch "${FILESDIR}/disable_bluetooth.patch" } diff --git a/kde-misc/kanyremote/kanyremote-5.11.ebuild b/kde-misc/kanyremote/kanyremote-5.11.ebuild index 305cee60acfe..eb3fae93ce4f 100644 --- a/kde-misc/kanyremote/kanyremote-5.11.ebuild +++ b/kde-misc/kanyremote/kanyremote-5.11.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kanyremote/kanyremote-5.11.ebuild,v 1.2 2010/03/21 21:03:49 serkan Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kanyremote/kanyremote-5.11.ebuild,v 1.3 2010/04/19 14:18:15 hwoarang Exp $ EAPI="2" -inherit eutils +inherit autotools base DESCRIPTION="KDE frontend to Anyremote" HOMEPAGE="http://anyremote.sourceforge.net/" @@ -22,11 +22,9 @@ DEPEND=">=app-mobilephone/anyremote-4.4[bluetooth?] RDEPEND="${DEPEND}" src_prepare() { + #fix documentation directory wrt bug #316087 + sed -i "s/doc\/${PN}/doc\/${PF}/g" Makefile.am + eautoreconf # workaround to bluetooth check when bluetooth use flag is disabled ! use bluetooth && epatch "${FILESDIR}/disable_bluetooth.patch" } - -src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" -} |