diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2012-08-21 09:08:25 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2012-08-21 09:08:25 +0000 |
commit | 8e08921690b695a8e1a74eb94ffb9524b055f4cf (patch) | |
tree | f637fb24076b8bbe1b3bb24aa76e0b3c827b3230 /x11-plugins/wmmixer/wmmixer-1.7.ebuild | |
parent | Version bump. Removed old (diff) | |
download | gentoo-2-8e08921690b695a8e1a74eb94ffb9524b055f4cf.tar.gz gentoo-2-8e08921690b695a8e1a74eb94ffb9524b055f4cf.tar.bz2 gentoo-2-8e08921690b695a8e1a74eb94ffb9524b055f4cf.zip |
Version bump, ebuild cleanup
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/wmmixer/wmmixer-1.7.ebuild')
-rw-r--r-- | x11-plugins/wmmixer/wmmixer-1.7.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/wmmixer/wmmixer-1.7.ebuild b/x11-plugins/wmmixer/wmmixer-1.7.ebuild new file mode 100644 index 000000000000..f5f78d9bbbc5 --- /dev/null +++ b/x11-plugins/wmmixer/wmmixer-1.7.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmixer/wmmixer-1.7.ebuild,v 1.1 2012/08/21 09:08:25 voyageur Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs + +DESCRIPTION="A mixer designed for WindowMaker" +HOMEPAGE="http://packages.qa.debian.org/w/wmmixer.html" +SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~mips ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xproto + x11-proto/xextproto" + +S=${WORKDIR}/${PN} + +src_prepare() { + epatch "${FILESDIR}"/${P}-respect_flags.patch +} + +src_compile() { + emake CXX=$(tc-getCXX) +} + +src_install() { + emake DESTDIR="${D}" install + dodoc CHANGES home.wmmixer README +} |