diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-21 13:50:35 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-21 13:50:35 +0000 |
commit | ce51af1c7895b44c18a2535f0fc282260bc84d0f (patch) | |
tree | 05ef387526a4f9b732aa4a8d631e77989a1a2f1d /media-sound/umix | |
parent | Real networks RealSDK license added (diff) | |
download | historical-ce51af1c7895b44c18a2535f0fc282260bc84d0f.tar.gz historical-ce51af1c7895b44c18a2535f0fc282260bc84d0f.tar.bz2 historical-ce51af1c7895b44c18a2535f0fc282260bc84d0f.zip |
repoman'd
Diffstat (limited to 'media-sound/umix')
-rw-r--r-- | media-sound/umix/umix-0.9.1.ebuild | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/media-sound/umix/umix-0.9.1.ebuild b/media-sound/umix/umix-0.9.1.ebuild index c81d5a3e115f..fcb19f179900 100644 --- a/media-sound/umix/umix-0.9.1.ebuild +++ b/media-sound/umix/umix-0.9.1.ebuild @@ -1,31 +1,26 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# Author: Sakari Lehtonen <sakari@ionstream.fi> -# $Header: /var/cvsroot/gentoo-x86/media-sound/umix/umix-0.9.1.ebuild,v 1.1 2002/07/14 10:31:26 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/umix/umix-0.9.1.ebuild,v 1.2 2002/07/21 13:50:35 seemant Exp $ +S=${WORKDIR}/${P} DESCRIPTION="Program for adjusting soundcard volumes" SRC_URI="http://www.ionstream.fi/sakari/${PN}/${P}.tar.gz" HOMEPAGE="http://www.ionstream.fi/sakari/umix/" + SLOT="0" KEYWORDS="x86" LICENSE="GPL-2" -DEPEND="virtual/glibc - ncurses? ( >=sys-libs/ncurses-5.2 ) - gtk? ( >=x11-libs/gtk+-2.0.0 )" +DEPEND="ncurses? ( >=sys-libs/ncurses-5.2 ) + gtk? ( >=x11-libs/gtk+-2.0.0 )" src_compile() { - local myopts - use ncurses || myopts="--disable-ncurses" - use gtk || myopts="${myopts} --disable-gtk" + local myconf + use ncurses || myconf="--disable-ncurses" + use gtk || myconf="${myconf} --disable-gtk" - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --infodir=/usr/share/man \ - --host=${CHOST} \ - ${myopts} || die + econf ${myconf} || die emake || die } |