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:2.6" |
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 |
pkg_setup() { |
22 |
unpack ${A} |
25 |
python_pkg_setup |
23 |
cd "${S}" |
26 |
} |
24 |
epatch "${FILESDIR}/${PV}-makefile-prefix.diff" |
27 |
|
|
|
28 |
src_prepare() { |
29 |
epatch "${FILESDIR}/${PV}-makefile-prefix.diff" |
25 |
} |
30 |
} |
26 |
|
31 |
|
27 |
src_compile() { |
32 |
src_compile() { |
Lines 29-34
Link Here
|
29 |
} |
34 |
} |
30 |
|
35 |
|
31 |
src_install() { |
36 |
src_install() { |
32 |
make DESTDIR="${D}" install |
37 |
make DESTDIR="${ED}" install |
33 |
dodoc codecs.txt README BUGS IDEAS |
38 |
dodoc codecs.txt README BUGS IDEAS |
34 |
} |
39 |
} |