diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2005-10-23 00:19:32 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2005-10-23 00:19:32 +0000 |
commit | f717075a315049cb87df4c4a20c7007ae42c112b (patch) | |
tree | 22b189ca9f80629a7a48060589fb9a703be1a6e7 /x11-misc/basket | |
parent | Fixed RDEPEND to virtual/jre instead of virtual/jdk. (diff) | |
download | gentoo-2-f717075a315049cb87df4c4a20c7007ae42c112b.tar.gz gentoo-2-f717075a315049cb87df4c4a20c7007ae42c112b.tar.bz2 gentoo-2-f717075a315049cb87df4c4a20c7007ae42c112b.zip |
fixed multiple ebuils issues
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'x11-misc/basket')
-rw-r--r-- | x11-misc/basket/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/basket/basket-0.5.0.ebuild | 18 |
2 files changed, 10 insertions, 13 deletions
diff --git a/x11-misc/basket/ChangeLog b/x11-misc/basket/ChangeLog index 01c55fe39432..cbf4c6df111f 100644 --- a/x11-misc/basket/ChangeLog +++ b/x11-misc/basket/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/basket # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/basket/ChangeLog,v 1.7 2005/06/19 16:04:26 smithj Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/basket/ChangeLog,v 1.8 2005/10/23 00:19:31 carlo Exp $ + + 23 Oct 2005; Carsten Lohrke <carlo@gentoo.org> basket-0.5.0.ebuild: + fixed multiple ebuils issues *basket-0.5.0 (19 Jun 2005) diff --git a/x11-misc/basket/basket-0.5.0.ebuild b/x11-misc/basket/basket-0.5.0.ebuild index a5b307802ebc..89fe50c832de 100644 --- a/x11-misc/basket/basket-0.5.0.ebuild +++ b/x11-misc/basket/basket-0.5.0.ebuild @@ -1,31 +1,25 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/basket/basket-0.5.0.ebuild,v 1.1 2005/06/19 16:04:26 smithj Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/basket/basket-0.5.0.ebuild,v 1.2 2005/10/23 00:19:32 carlo Exp $ inherit eutils kde -need-kde 3.3 -need-qt 3 - -IUSE="arts" DESCRIPTION="A DropDrawers clone. Multiple information organizer" HOMEPAGE="http://basket.kde.org/" SRC_URI="http://basket.kde.org/downloads/index.php?file=${P}.tar.gz" +SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~amd64" +IUSE="" -DEPEND="virtual/x11 - arts? ( kde-base/arts )" - -DOCS="AUTHORS ChangeLog INSTALL NEWS REDME TODO" +need-kde 3.3 src_unpack() { - unpack ${A} + kde_src_unpack - cd ${S} # patch from basket developer to solve compilation # problemes on systems without arts - ! use arts && epatch ${FILESDIR}/${P}-noarts.patch + use arts || epatch ${FILESDIR}/${P}-noarts.patch } |