diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-17 07:09:14 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-17 07:09:14 +0000 |
commit | 0c93ec6471fb7b19382cc30dabd6f433624608db (patch) | |
tree | b98f3e14b266cdd2ee0f82061efadff37787fbd1 /media-sound/a2jmidid | |
parent | move patching/elibtoolizing to src_prepare (diff) | |
download | gentoo-2-0c93ec6471fb7b19382cc30dabd6f433624608db.tar.gz gentoo-2-0c93ec6471fb7b19382cc30dabd6f433624608db.tar.bz2 gentoo-2-0c93ec6471fb7b19382cc30dabd6f433624608db.zip |
version bump
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/a2jmidid')
-rw-r--r-- | media-sound/a2jmidid/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/a2jmidid/a2jmidid-5.ebuild | 29 |
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 +} |