Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 313931 | Differences between
and this patch

Collapse All | Expand All

(-)a2jmidid.orig//a2jmidid-4.ebuild (-3 / +13 lines)
Lines 2-7 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/a2jmidid/a2jmidid-4.ebuild,v 1.2 2009/01/25 17:07:52 maekke Exp $
3
# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-4.ebuild,v 1.2 2009/01/25 17:07:52 maekke Exp $
4
4
5
EAPI="3"
6
7
PYTHON_DEPEND="2:2.6"
8
9
inherit toolchain-funcs python
10
5
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
11
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
6
HOMEPAGE="http://home.gna.org/a2jmidid/"
12
HOMEPAGE="http://home.gna.org/a2jmidid/"
7
SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
13
SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
Lines 15-22 Link Here
15
	media-sound/jack-audio-connection-kit
21
	media-sound/jack-audio-connection-kit
16
	sys-apps/dbus"
22
	sys-apps/dbus"
17
DEPEND="${RDEPEND}
23
DEPEND="${RDEPEND}
18
	dev-util/pkgconfig
24
	dev-util/pkgconfig"
19
	dev-lang/python"
25
26
pkg_setup() {
27
	python_set_active_version 2
28
}
20
29
21
src_compile() {
30
src_compile() {
22
	./waf configure --prefix=/usr || die "failed to configure"
31
	./waf configure --prefix=/usr || die "failed to configure"
Lines 24-29 Link Here
24
}
34
}
25
35
26
src_install() {
36
src_install() {
27
	./waf --destdir="${D}" install || die "install failed"
37
	./waf --destdir="${ED}" install || die "install failed"
28
	dodoc AUTHORS README NEWS internals.txt
38
	dodoc AUTHORS README NEWS internals.txt
39
	python_convert_shebangs -r 2 "${ED}"
29
}
40
}
(-)a2jmidid.orig//a2jmidid-5.ebuild (-3 / +13 lines)
Lines 2-7 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/a2jmidid/a2jmidid-5.ebuild,v 1.1 2009/06/17 07:09:14 aballier Exp $
3
# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-5.ebuild,v 1.1 2009/06/17 07:09:14 aballier Exp $
4
4
5
EAPI="3"
6
7
PYTHON_DEPEND="2:2.6"
8
9
inherit toolchain-funcs python
10
5
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
11
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
6
HOMEPAGE="http://home.gna.org/a2jmidid/"
12
HOMEPAGE="http://home.gna.org/a2jmidid/"
7
SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
13
SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
Lines 15-22 Link Here
15
	media-sound/jack-audio-connection-kit
21
	media-sound/jack-audio-connection-kit
16
	sys-apps/dbus"
22
	sys-apps/dbus"
17
DEPEND="${RDEPEND}
23
DEPEND="${RDEPEND}
18
	dev-util/pkgconfig
24
	dev-util/pkgconfig"
19
	dev-lang/python"
25
26
pkg_setup() {
27
	python_set_active_version 2
28
}
20
29
21
src_compile() {
30
src_compile() {
22
	./waf configure --prefix=/usr || die "failed to configure"
31
	./waf configure --prefix=/usr || die "failed to configure"
Lines 24-29 Link Here
24
}
33
}
25
34
26
src_install() {
35
src_install() {
27
	./waf --destdir="${D}" install || die "install failed"
36
	./waf --destdir="${ED}" install || die "install failed"
28
	dodoc AUTHORS README NEWS internals.txt
37
	dodoc AUTHORS README NEWS internals.txt
38
	python_convert_shebangs -r 2 "${ED}"
29
}
39
}
(-)a2jmidid.orig//a2jmidid-6.ebuild (-4 / +12 lines)
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/a2jmidid/a2jmidid-6.ebuild,v 1.1 2010/01/09 18:49:56 aballier Exp $
3
# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild,v 1.1 2010/01/09 18:49:56 aballier Exp $
4
4
5
inherit toolchain-funcs
5
EAPI="3"
6
7
PYTHON_DEPEND="2:2.6"
8
9
inherit toolchain-funcs python
6
10
7
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
11
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
8
HOMEPAGE="http://home.gna.org/a2jmidid/"
12
HOMEPAGE="http://home.gna.org/a2jmidid/"
Lines 17-24 Link Here
17
	media-sound/jack-audio-connection-kit
21
	media-sound/jack-audio-connection-kit
18
	sys-apps/dbus"
22
	sys-apps/dbus"
19
DEPEND="${RDEPEND}
23
DEPEND="${RDEPEND}
20
	dev-util/pkgconfig
24
	dev-util/pkgconfig"
21
	dev-lang/python"
25
26
pkg_setup() {
27
	python_set_active_version 2
28
}
22
29
23
src_compile() {
30
src_compile() {
24
	tc-export CC AR CPP LD RANLIB
31
	tc-export CC AR CPP LD RANLIB
Lines 27-32 Link Here
27
}
34
}
28
35
29
src_install() {
36
src_install() {
30
	./waf --destdir="${D}" install || die "install failed"
37
	./waf --destdir="${ED}" install || die "install failed"
31
	dodoc AUTHORS README NEWS internals.txt
38
	dodoc AUTHORS README NEWS internals.txt
39
	python_convert_shebangs -r 2 "${ED}"
32
}
40
}

Return to bug 313931