blob: 18b8954740c8ce63034d71e2aeedc162b1bcefa9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/smixer/smixer-1.0.4.ebuild,v 1.1 2007/07/27 19:05:33 drac Exp $
inherit toolchain-funcs
DESCRIPTION="command-line tool for setting and viewing mixer settings"
HOMEPAGE="http://centerclick.org/programs/smixer"
SRC_URI="http://centerclick.org/programs/${PN}/${PN}${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~hppa ~amd64 ~sparc"
IUSE=""
S="${WORKDIR}"/${PN}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" \
LFLAGS="${LDFLAGS}" || die "emake failed."
}
src_install () {
insinto /etc
doins smixer.conf
dobin smixer
doman man/smixer.1
dodoc README
}
|