diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-01-21 12:33:37 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-01-21 12:33:37 +0000 |
commit | bd617ff67bd4a0fe1fc68c0a8cbcd27f6423b50a (patch) | |
tree | a29c7cd94de0770c76a23117bdac1834d48f6e74 /x11-plugins/wmwork | |
parent | Eclipse 3.3.1.1 version bump, minor syntax changes for 3.2.1-r2 ebuild. (diff) | |
download | gentoo-2-bd617ff67bd4a0fe1fc68c0a8cbcd27f6423b50a.tar.gz gentoo-2-bd617ff67bd4a0fe1fc68c0a8cbcd27f6423b50a.tar.bz2 gentoo-2-bd617ff67bd4a0fe1fc68c0a8cbcd27f6423b50a.zip |
Keyword ~amd64 and fix depends, wipe unnecessary src_compile, stop inheriting unused eutils and such minor changes..
(Portage version: 2.1.4)
Diffstat (limited to 'x11-plugins/wmwork')
-rw-r--r-- | x11-plugins/wmwork/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmwork/wmwork-0.2.5.ebuild | 30 |
2 files changed, 18 insertions, 19 deletions
diff --git a/x11-plugins/wmwork/ChangeLog b/x11-plugins/wmwork/ChangeLog index 4eb0f4dbcf0f..eff8e3370660 100644 --- a/x11-plugins/wmwork/ChangeLog +++ b/x11-plugins/wmwork/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/wmwork -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwork/ChangeLog,v 1.2 2007/08/22 06:27:43 s4t4n Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwork/ChangeLog,v 1.3 2008/01/21 12:33:37 drac Exp $ + + 21 Jan 2008; Samuli Suominen <drac@gentoo.org> wmwork-0.2.5.ebuild: + Keyword ~amd64. 22 Aug 2007; Michele Noberasco <s4t4n@gentoo.org> wmwork-0.2.5.ebuild: Stable for x86. diff --git a/x11-plugins/wmwork/wmwork-0.2.5.ebuild b/x11-plugins/wmwork/wmwork-0.2.5.ebuild index 00ecdea27b1c..48b6a7da2053 100644 --- a/x11-plugins/wmwork/wmwork-0.2.5.ebuild +++ b/x11-plugins/wmwork/wmwork-0.2.5.ebuild @@ -1,29 +1,25 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwork/wmwork-0.2.5.ebuild,v 1.2 2007/08/22 06:27:43 s4t4n Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwork/wmwork-0.2.5.ebuild,v 1.3 2008/01/21 12:33:37 drac Exp $ -inherit eutils +DESCRIPTION="a dockapp that lets you easily track time spent on different projects." +HOMEPAGE="http://www.godisch.de/debian/wmwork" +SRC_URI="http://www.godisch.de/debian/${PN}/${P}.tar.gz" -DESCRIPTION="Dock-app that lets you easily track time spent on different projects." -HOMEPAGE="http://www.godisch.de/debian/wmwork/" -SRC_URI="http://www.godisch.de/debian/wmwork/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86" +KEYWORDS="~amd64 x86" IUSE="" -DEPEND=">=x11-libs/libXext-1.0.3 + +RDEPEND=">=x11-libs/libXext-1.0.3 >=x11-libs/libX11-1.1.1-r1 >=x11-libs/libXpm-3.5.6" +DEPEND="${RDEPEND} + x11-proto/xextproto" -src_compile() { - cd src - econf || die "econf failed" - emake || die "emake failed" -} +S=${WORKDIR}/${P}/src src_install() { - dodoc README CHANGES - cd src - emake DESTDIR="${D}" install || die "emake install failed" - doman wmwork.1 || die "doman failed" + emake DESTDIR="${D}" install || die "emake install failed." + dodoc ../{CHANGES,README} } |