diff options
author | 2010-06-11 17:33:32 +0000 | |
---|---|---|
committer | 2010-06-11 17:33:32 +0000 | |
commit | b9d414b043d13a7bddc30f4ac46f43ef0883566d (patch) | |
tree | 2dffa6b71d7412088ba0534b2038a255d4813279 /media-sound/aumix/aumix-2.9.1.ebuild | |
parent | x86 stable wrt bug #319517 (diff) | |
download | gentoo-2-b9d414b043d13a7bddc30f4ac46f43ef0883566d.tar.gz gentoo-2-b9d414b043d13a7bddc30f4ac46f43ef0883566d.tar.bz2 gentoo-2-b9d414b043d13a7bddc30f4ac46f43ef0883566d.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/aumix/aumix-2.9.1.ebuild')
-rw-r--r-- | media-sound/aumix/aumix-2.9.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/media-sound/aumix/aumix-2.9.1.ebuild b/media-sound/aumix/aumix-2.9.1.ebuild new file mode 100644 index 000000000000..7730049f21c1 --- /dev/null +++ b/media-sound/aumix/aumix-2.9.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/aumix-2.9.1.ebuild,v 1.1 2010/06/11 17:33:32 ssuominen Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="Aumix volume/mixer control program" +HOMEPAGE="http://jpj.net/~trevor/aumix.html" +SRC_URI="http://jpj.net/~trevor/aumix/releases/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="gpm gtk nls" + +RDEPEND="sys-libs/ncurses + gpm? ( sys-libs/gpm ) + gtk? ( x11-libs/gtk+:2 ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( sys-devel/gettext )" + +src_configure() { + local myconf + + use gtk || myconf="${myconf} --without-gtk" + use gpm || myconf="${myconf} --without-gpm" + + econf \ + $(use_enable nls) \ + --disable-dependency-tracking \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS BUGS ChangeLog NEWS README TODO + + newinitd "${FILESDIR}"/aumix.rc6 aumix + + if use gtk; then + doicon data/aumix.xpm + make_desktop_entry aumix Aumix + fi +} |