Lines 2-8
Link Here
|
2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/media-sound/codecgraph/codecgraph-20090522.ebuild,v 1.1 2010/11/21 13:40:34 chainsaw Exp $ |
3 |
# $Header: /var/cvsroot/gentoo-x86/media-sound/codecgraph/codecgraph-20090522.ebuild,v 1.1 2010/11/21 13:40:34 chainsaw Exp $ |
4 |
|
4 |
|
5 |
inherit eutils |
5 |
EAPI="4" |
|
|
6 |
|
7 |
PYTHON_DEPEND="2" |
8 |
|
9 |
inherit eutils python |
6 |
|
10 |
|
7 |
DESCRIPTION="Generates a graph based on the ALSA description of an HD Audio codec." |
11 |
DESCRIPTION="Generates a graph based on the ALSA description of an HD Audio codec." |
8 |
HOMEPAGE="http://helllabs.org/codecgraph/" |
12 |
HOMEPAGE="http://helllabs.org/codecgraph/" |
Lines 12-27
Link Here
|
12 |
KEYWORDS="~amd64" |
16 |
KEYWORDS="~amd64" |
13 |
IUSE="" |
17 |
IUSE="" |
14 |
|
18 |
|
15 |
RDEPEND="dev-lang/python |
19 |
RDEPEND=" media-gfx/graphviz" |
16 |
media-gfx/graphviz" |
|
|
17 |
|
20 |
|
18 |
DEPEND="${RDEPEND} |
21 |
DEPEND="${RDEPEND} |
19 |
media-gfx/imagemagick" |
22 |
media-gfx/imagemagick" |
20 |
|
23 |
|
21 |
src_unpack() { |
24 |
src_prepare() { |
22 |
unpack ${A} |
25 |
epatch "${FILESDIR}/${PV}-makefile-prefix.diff" |
23 |
cd "${S}" |
|
|
24 |
epatch "${FILESDIR}/${PV}-makefile-prefix.diff" |
25 |
} |
26 |
} |
26 |
|
27 |
|
27 |
src_compile() { |
28 |
src_compile() { |
Lines 29-34
Link Here
|
29 |
} |
30 |
} |
30 |
|
31 |
|
31 |
src_install() { |
32 |
src_install() { |
32 |
make DESTDIR="${D}" install |
33 |
make DESTDIR="${ED}" install |
33 |
dodoc codecs.txt README BUGS IDEAS |
34 |
dodoc codecs.txt README BUGS IDEAS |
|
|
35 |
python_convert_shebangs -r 2 "${ED}" |
34 |
} |
36 |
} |