diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-01-16 18:58:46 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-01-16 18:58:46 +0000 |
commit | 7ea04f2dda61ab96828ae42f7f33b962ebe586c7 (patch) | |
tree | e3026ef0428488a664e29850aafb2c34aff68f9e /x11-plugins/wmmisc/wmmisc-1.1.ebuild | |
parent | Dropped ppc-macos keyword, see you in prefix (diff) | |
download | gentoo-2-7ea04f2dda61ab96828ae42f7f33b962ebe586c7.tar.gz gentoo-2-7ea04f2dda61ab96828ae42f7f33b962ebe586c7.tar.bz2 gentoo-2-7ea04f2dda61ab96828ae42f7f33b962ebe586c7.zip |
Version bump, using a patch to modify build system which is broken more or less.
(Portage version: 2.1.4)
Diffstat (limited to 'x11-plugins/wmmisc/wmmisc-1.1.ebuild')
-rw-r--r-- | x11-plugins/wmmisc/wmmisc-1.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/wmmisc/wmmisc-1.1.ebuild b/x11-plugins/wmmisc/wmmisc-1.1.ebuild new file mode 100644 index 000000000000..c71343439b1e --- /dev/null +++ b/x11-plugins/wmmisc/wmmisc-1.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmisc/wmmisc-1.1.ebuild,v 1.1 2008/01/16 18:58:45 drac Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="a monitoring dockapp for system load, user amount, fork amount and processes." +HOMEPAGE="http://packages.qa.debian.org/w/wmmisc.html" +SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +S=${WORKDIR}/${P}/src + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xextproto" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-build.patch +} + +src_compile() { + tc-export CC + emake || die "emake failed." +} + +src_install() { + dobin ${PN} + dodoc ../{ChangeLog,README} +} |