blob: 9372b972502b768061a2c36d28824ce62b3762b3 (
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
32
33
34
35
36
37
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/gom/gom-0.29.103-r1.ebuild,v 1.10 2004/03/01 05:37:14 eradicator Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Console Mixer Program for OSS"
SRC_URI="http://www.Fh-Worms.DE./~inf222/code/c/gom/released/${P}.tar.gz"
HOMEPAGE="http://www.fh-worms.de/~inf222"
DEPEND=">=sys-libs/ncurses-5.2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_compile() {
econf || die
make CFLAGS="${CFLAGS}" || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS NEWS ChangeLog README
docinto examples
dodoc README
docinto examples/default
dodoc examples/default/*
docinto examples/standard
dodoc examples/standard/*
docinto examples/two-mixers
dodoc examples/two-mixers/*
}
|