diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-01-09 18:49:56 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-01-09 18:49:56 +0000 |
commit | 5687f7623ed1037db6e7bc7118055e593ff9ad19 (patch) | |
tree | 1c45e67c815e2a5a7fb60841b0b3fe383f93f242 /media-sound | |
parent | Transfer Prefix keywords (diff) | |
download | gentoo-2-5687f7623ed1037db6e7bc7118055e593ff9ad19.tar.gz gentoo-2-5687f7623ed1037db6e7bc7118055e593ff9ad19.tar.bz2 gentoo-2-5687f7623ed1037db6e7bc7118055e593ff9ad19.zip |
version bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/a2jmidid/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/a2jmidid/a2jmidid-6.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/media-sound/a2jmidid/ChangeLog b/media-sound/a2jmidid/ChangeLog index 531fabc88b3d..479eb90e8e31 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.3 2009/06/17 07:09:14 aballier Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.4 2010/01/09 18:49:56 aballier Exp $ + +*a2jmidid-6 (09 Jan 2010) + + 09 Jan 2010; Alexis Ballier <aballier@gentoo.org> +a2jmidid-6.ebuild: + version bump *a2jmidid-5 (17 Jun 2009) diff --git a/media-sound/a2jmidid/a2jmidid-6.ebuild b/media-sound/a2jmidid/a2jmidid-6.ebuild new file mode 100644 index 000000000000..96dc11c847df --- /dev/null +++ b/media-sound/a2jmidid/a2jmidid-6.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild,v 1.1 2010/01/09 18:49:56 aballier Exp $ + +inherit toolchain-funcs + +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() { + tc-export CC AR CPP LD RANLIB + ./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 +} |