diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-23 07:02:21 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-23 07:02:21 +0000 |
commit | 52071a8f47232ef9bfc1239cff77e6f0d0224489 (patch) | |
tree | 9a8b88418e9d9898639c3fd1779f5e9351d204a6 /media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild | |
parent | +games-util/xqf:bzip2 (diff) | |
download | gentoo-2-52071a8f47232ef9bfc1239cff77e6f0d0224489.tar.gz gentoo-2-52071a8f47232ef9bfc1239cff77e6f0d0224489.tar.bz2 gentoo-2-52071a8f47232ef9bfc1239cff77e6f0d0224489.zip |
Version bump.
(Portage version: 2.0.51-r14)
Diffstat (limited to 'media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild')
-rw-r--r-- | media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild b/media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild new file mode 100644 index 000000000000..3c9d34fe6fe9 --- /dev/null +++ b/media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-jack/alsa-jack-1.0.8.ebuild,v 1.1 2005/01/23 07:01:13 eradicator Exp $ + +IUSE="" + +inherit libtool + +MY_PV=${PV/_rc/rc} +S=${WORKDIR}/alsa-lib-${MY_PV} + +DESCRIPTION="JACK pcm plugin" +HOMEPAGE="http://www.alsa-project.org/" +SRC_URI="mirror://alsaproject/lib/alsa-lib-${MY_PV}.tar.bz2" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +LICENSE="GPL-2 LGPL-2.1" + +DEPEND="~media-libs/alsa-lib-${PV} + media-sound/jack-audio-connection-kit" + +src_compile() { + elibtoolize + econf --enable-jack || die "./configure failed" + + cd ${S}/src/pcm/ext + make jack || die "make on jack plugin failed" +} + +src_install() { + cd ${S}/src/pcm/ext + make DESTDIR="${D}" install-jack || die "make install on jack plugin failed" +} |