diff options
-rw-r--r-- | x11-themes/domino/ChangeLog | 8 | ||||
-rw-r--r-- | x11-themes/domino/domino-0.4-r1.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/x11-themes/domino/ChangeLog b/x11-themes/domino/ChangeLog index c6e966dc104c..ff757bf8a762 100644 --- a/x11-themes/domino/ChangeLog +++ b/x11-themes/domino/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/domino # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/domino/ChangeLog,v 1.7 2008/02/19 02:07:56 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/domino/ChangeLog,v 1.8 2008/11/07 23:51:43 scarabeus Exp $ + +*domino-0.4-r1 (07 Nov 2008) + + 07 Nov 2008; Tomas Chvatal <scarabeus@gentoo.org> +domino-0.4-r1.ebuild: + Fix installation in kde-3.5.10 (due to updates in kdebase-startkde). Now + installs into /usr/kde/3.5 19 Feb 2008; Ingmar Vanhassel <ingmar@gentoo.org> domino-0.4.ebuild: Update kde-base/* dependencies so that KDE 4 doesn't satisfy it. bug 206528. diff --git a/x11-themes/domino/domino-0.4-r1.ebuild b/x11-themes/domino/domino-0.4-r1.ebuild new file mode 100644 index 000000000000..522a41584aae --- /dev/null +++ b/x11-themes/domino/domino-0.4-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/domino/domino-0.4-r1.ebuild,v 1.1 2008/11/07 23:51:43 scarabeus Exp $ + +ARTS_REQUIRED="never" +inherit kde + +DESCRIPTION="A KDE style with a soft look" +HOMEPAGE="http://www.kde-look.org/content/show.php?content=42804" +SRC_URI="http://www.kde-look.org/CONTENT/content-files/42804-${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" +EXTRA_ECONF="--prefix=/usr/kde/3.5/" + +RDEPEND="|| ( =kde-base/kwin-3.5* =kde-base/kdebase-3.5* )" +need-kde 3.5 + +PATCHES=( "${FILESDIR}/${P}-fbsd.patch" ) + +src_unpack() { + kde_src_unpack + rm -f "${S}/configure" +} |