summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-06-17 07:09:14 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-06-17 07:09:14 +0000
commitdb687a59487ebf60adef7a1296426d586e45252e (patch)
treea38f1b38667d92bfa1a41f9f3ed92f31c3b91763
parentmove patching/elibtoolizing to src_prepare (diff)
downloadhistorical-db687a59487ebf60adef7a1296426d586e45252e.tar.gz
historical-db687a59487ebf60adef7a1296426d586e45252e.tar.bz2
historical-db687a59487ebf60adef7a1296426d586e45252e.zip
version bump
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
-rw-r--r--media-sound/a2jmidid/ChangeLog7
-rw-r--r--media-sound/a2jmidid/a2jmidid-5.ebuild29
2 files changed, 35 insertions, 1 deletions
diff --git a/media-sound/a2jmidid/ChangeLog b/media-sound/a2jmidid/ChangeLog
index d66de6bedcd6..531fabc88b3d 100644
--- a/media-sound/a2jmidid/ChangeLog
+++ b/media-sound/a2jmidid/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/a2jmidid
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.2 2009/01/25 17:07:52 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.3 2009/06/17 07:09:14 aballier Exp $
+
+*a2jmidid-5 (17 Jun 2009)
+
+ 17 Jun 2009; Alexis Ballier <aballier@gentoo.org> +a2jmidid-5.ebuild:
+ version bump
25 Jan 2009; Markus Meier <maekke@gentoo.org> a2jmidid-4.ebuild:
amd64/x86 stable, bug #255746
diff --git a/media-sound/a2jmidid/a2jmidid-5.ebuild b/media-sound/a2jmidid/a2jmidid-5.ebuild
new file mode 100644
index 000000000000..d5da840a161c
--- /dev/null
+++ b/media-sound/a2jmidid/a2jmidid-5.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-5.ebuild,v 1.1 2009/06/17 07:09:14 aballier Exp $
+
+DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
+HOMEPAGE="http://home.gna.org/a2jmidid/"
+SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-libs/alsa-lib
+ media-sound/jack-audio-connection-kit
+ sys-apps/dbus"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ dev-lang/python"
+
+src_compile() {
+ ./waf configure --prefix=/usr || die "failed to configure"
+ ./waf || die "failed to build"
+}
+
+src_install() {
+ ./waf --destdir="${D}" install || die "install failed"
+ dodoc AUTHORS README NEWS internals.txt
+}