diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2003-01-18 22:28:57 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2003-01-18 22:28:57 +0000 |
commit | c197d75afe16936792420b18f4b1c5fdfbd34917 (patch) | |
tree | 1b1b7543cb93516e23de91e945182887cbda997a /media-sound | |
parent | fix bug #13756 (diff) | |
download | historical-c197d75afe16936792420b18f4b1c5fdfbd34917.tar.gz historical-c197d75afe16936792420b18f4b1c5fdfbd34917.tar.bz2 historical-c197d75afe16936792420b18f4b1c5fdfbd34917.zip |
version bump
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ermixer/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/ermixer/ermixer-0.8.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/media-sound/ermixer/ChangeLog b/media-sound/ermixer/ChangeLog index a95ea595ca5d..99a9c63a5b70 100644 --- a/media-sound/ermixer/ChangeLog +++ b/media-sound/ermixer/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/ermixer # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ermixer/ChangeLog,v 1.2 2003/01/06 01:39:13 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ermixer/ChangeLog,v 1.3 2003/01/18 22:28:57 lu_zero Exp $ + +*ermixer-0.8.0 (18 Jan 2003) + + 18 Jan 2003; Luca Barbato <lu_zero@gentoo.org> : + Version update. Thanks to Michele Balistreri <brain87@gmx.net> for heads-up. *ermixer-0.7.1 (05 Jan 2003) diff --git a/media-sound/ermixer/ermixer-0.8.ebuild b/media-sound/ermixer/ermixer-0.8.ebuild new file mode 100644 index 000000000000..53712c623187 --- /dev/null +++ b/media-sound/ermixer/ermixer-0.8.ebuild @@ -0,0 +1,28 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +DESCRIPTION="A full featured console-based audio mixer." +HOMEPAGE="http://ermixer.sourceforge.net" +LICENSE="GPL-2" + +DEPEND=">=sys-libs/ncurses-5.2 + qt? ( x11-libs/qt )" + +SLOT="0" +KEYWORDS="x86" + +SRC_URI="http://erevan.cuore.org/files/ermixer/${P}.tar.gz" +S="${WORKDIR}/${P}" + +src_compile() { + local myconf + + use qt && myconf="--enable-qt=yes" + econf ${myconf}|| die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README +} |