blob: 93418829cb729d47fa9ec77780ba36d792119fb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author J. Findeisen <you@hanez.org>
# $Header: /var/cvsroot/gentoo-x86/media-sound/alsamixergui/alsamixergui-0.9.0.1.2.ebuild,v 1.1 2002/05/24 07:43:44 agenkin Exp $
DESCRIPTION="AlsaMixerGui - a FLTK based amixer Frontend"
HOMEPAGE="http://www.iua.upf.es/~mdeboer/projects/alsamixergui/"
DEPEND="virtual/glibc
>=media-sound/alsa-driver-0.9.0_rc1-r1
>=media-sound/alsa-utils-0.9.0_rc1
>=x11-libs/fltk-1.0.11"
# Weird version numbering.
# I'm mapping rc1-2 into "1.2" suffix for the package.
NATIVE_VER=0.9.0rc1-2
SRC_URI="ftp://www.iua.upf.es/pub/mdeboer/projects/alsamixergui/${PN}-${NATIVE_VER}.tar.gz"
S=${WORKDIR}/${PN}-${NATIVE_VER}
src_compile() {
cd ${S}
./configure || die "./configure failed"
make || die
}
src_install () {
cd ${S}
make DESTDIR=${D} install || die
dodoc COPYING README AUTHORS ChangeLog
}
|