blob: f12fe805cf12f36af0a83c1c3457f5316c713b9e (
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
31
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/smixer/smixer-1.0.1.ebuild,v 1.10 2004/02/26 18:40:29 vapier Exp $
DESCRIPTION="A command-line tool for setting and viewing mixer settings"
HOMEPAGE="http://centerclick.org/programs/smixer/"
SRC_URI="http://centerclick.org/programs/smixer/${PN}${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc hppa amd64"
DEPEND="virtual/glibc"
S=${WORKDIR}/${PN}
src_compile() {
emake || die
}
src_install () {
dodir /usr/bin /etc /usr/share/man/man1
make \
INS_BIN=${D}/usr/bin \
INS_ETC=${D}/etc \
INS_MAN=${D}/usr/share/man/man1 \
install || die
dodoc README
}
|