diff options
author | Ioannis Aslanidis <deathwing00@gentoo.org> | 2006-10-10 08:47:14 +0000 |
---|---|---|
committer | Ioannis Aslanidis <deathwing00@gentoo.org> | 2006-10-10 08:47:14 +0000 |
commit | d4095632c7aab5d3da1d29fd71a7365a3ca5fc84 (patch) | |
tree | 2b447aefec6c344b00020a6e08cc8f65002993df /x11-themes | |
parent | Keyworded ~ppc64 (diff) | |
download | gentoo-2-d4095632c7aab5d3da1d29fd71a7365a3ca5fc84.tar.gz gentoo-2-d4095632c7aab5d3da1d29fd71a7365a3ca5fc84.tar.bz2 gentoo-2-d4095632c7aab5d3da1d29fd71a7365a3ca5fc84.zip |
Fixed bug #150616.
(Portage version: 2.1.1)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/liquid/ChangeLog | 9 | ||||
-rw-r--r-- | x11-themes/liquid/files/digest-liquid-0.9.7 | 5 | ||||
-rw-r--r-- | x11-themes/liquid/liquid-0.9.7.ebuild | 18 |
3 files changed, 27 insertions, 5 deletions
diff --git a/x11-themes/liquid/ChangeLog b/x11-themes/liquid/ChangeLog index 3ec2a2d050d9..3d967d7025e7 100644 --- a/x11-themes/liquid/ChangeLog +++ b/x11-themes/liquid/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-themes/liquid -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/liquid/ChangeLog,v 1.7 2005/08/21 21:35:59 greg_g Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/liquid/ChangeLog,v 1.8 2006/10/10 08:47:14 deathwing00 Exp $ + + 10 Oct 2006; Ioannis Aslanidis <deathwing00@gentoo.org> + liquid-0.9.7.ebuild: + Forcing automake 1.6 and autoconf 2.1. Added update for the admin + subdirectory. Fixes bug #150616. Thanks to Patrick Lauer for reporting it. 21 Aug 2005; Gregorio Guidi <greg_g@gentoo.org> liquid-0.9.7.ebuild: Correct KDE dependency (#83058). diff --git a/x11-themes/liquid/files/digest-liquid-0.9.7 b/x11-themes/liquid/files/digest-liquid-0.9.7 index 49f1818baafb..dd7972c8dab1 100644 --- a/x11-themes/liquid/files/digest-liquid-0.9.7 +++ b/x11-themes/liquid/files/digest-liquid-0.9.7 @@ -1 +1,6 @@ +MD5 122f8bcc6b7eb5805df46461ed48bf2c kde-admindir-3.5.3.tar.bz2 187248 +RMD160 81eedc1b81f2cee6709b7c8ad08859024da090f6 kde-admindir-3.5.3.tar.bz2 187248 +SHA256 0cd8bf32dad0affa56edf5723747275be2b1e0702abefc28ded8763ad58fe07b kde-admindir-3.5.3.tar.bz2 187248 MD5 e4eff5c248e57c036d03e4dd670b46ce liquid-0.9.7.tar.bz2 251091 +RMD160 870aa2716ab1814000c4e539c88a285a0feac7b2 liquid-0.9.7.tar.bz2 251091 +SHA256 2f1e0a285d86bdfbc0ddc0c273b2f06a46c3e24a1811ecf3a1055382935216e4 liquid-0.9.7.tar.bz2 251091 diff --git a/x11-themes/liquid/liquid-0.9.7.ebuild b/x11-themes/liquid/liquid-0.9.7.ebuild index 30a09ea06b79..25cd1e2ade4b 100644 --- a/x11-themes/liquid/liquid-0.9.7.ebuild +++ b/x11-themes/liquid/liquid-0.9.7.ebuild @@ -1,12 +1,16 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/liquid/liquid-0.9.7.ebuild,v 1.7 2005/08/21 21:35:59 greg_g Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/liquid/liquid-0.9.7.ebuild,v 1.8 2006/10/10 08:47:14 deathwing00 Exp $ inherit kde +WANT_AUTOMAKE="1.6" +WANT_AUTOCONF="2.1" + DESCRIPTION="Liquid theme, revamped for KDE 3.2" HOMEPAGE="http://developer.berlios.de/projects/liquid/" -SRC_URI="http://download.berlios.de/liquid/${P}.tar.bz2" +SRC_URI="http://download.berlios.de/liquid/${P}.tar.bz2 + mirror://gentoo/kde-admindir-3.5.3.tar.bz2" LICENSE="BSD" SLOT="0" @@ -16,3 +20,11 @@ IUSE="" DEPEND="|| ( kde-base/kwin >=kde-base/kdebase-3.2 )" need-kde 3.2 + +src_unpack() { + unpack ${A} + cd "${S}" + rm -rf "${S}/admin" "${S}/configure" + ln -s "${WORKDIR}/admin" "${S}/admin" +} + |