diff options
author | 2005-10-23 02:26:41 +0000 | |
---|---|---|
committer | 2005-10-23 02:26:41 +0000 | |
commit | b97acfc109e4703ba1aec09dea78b52846d9d086 (patch) | |
tree | 41645506280b1b225a928723985a9769e6761cbd /media-sound/gamix/gamix-1.99_p14-r2.ebuild | |
parent | cleaned up deps/stale ebuilds (diff) | |
download | historical-b97acfc109e4703ba1aec09dea78b52846d9d086.tar.gz historical-b97acfc109e4703ba1aec09dea78b52846d9d086.tar.bz2 historical-b97acfc109e4703ba1aec09dea78b52846d9d086.zip |
Removed gtk2 use flag, Bug 106560.
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'media-sound/gamix/gamix-1.99_p14-r2.ebuild')
-rw-r--r-- | media-sound/gamix/gamix-1.99_p14-r2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/media-sound/gamix/gamix-1.99_p14-r2.ebuild b/media-sound/gamix/gamix-1.99_p14-r2.ebuild new file mode 100644 index 000000000000..d49c0b211e80 --- /dev/null +++ b/media-sound/gamix/gamix-1.99_p14-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gamix/gamix-1.99_p14-r2.ebuild,v 1.1 2005/10/23 02:26:41 matsuu Exp $ + +MY_P=${P/_p/.p} +S=${WORKDIR}/${MY_P} +DESCRIPTION="GTK ALSA audio mixer" +HOMEPAGE="http://www1.tcnet.ne.jp/fmurata/linux/down" +SRC_URI="http://www1.tcnet.ne.jp/fmurata/linux/down/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 -sparc ~x86" +IUSE="nls" + +DEPEND="media-libs/alsa-lib + >=x11-libs/gtk+-2" + +src_compile() { + local myconf + myconf="--with-gtk-target=-2.0" + econf `use_enable nls` ${myconf} || die "./configure failed" + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc README README.euc TODO NEWS AUTHORS +} |