diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-04-03 13:31:33 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-04-03 13:31:33 +0000 |
commit | 58d17d27a7a646a4226d4fca9aaef9ce3257bf10 (patch) | |
tree | 89d7b9f1dc520218e82443dfa83cc6b8a92500a4 /media-sound/jack-audio-connection-kit | |
parent | Remove obsolete packages from info_pkgs and update comment. (diff) | |
download | gentoo-2-58d17d27a7a646a4226d4fca9aaef9ce3257bf10.tar.gz gentoo-2-58d17d27a7a646a4226d4fca9aaef9ce3257bf10.tar.bz2 gentoo-2-58d17d27a7a646a4226d4fca9aaef9ce3257bf10.zip |
version bump
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/jack-audio-connection-kit')
-rw-r--r-- | media-sound/jack-audio-connection-kit/ChangeLog | 10 | ||||
-rw-r--r-- | media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.120.1.ebuild | 65 |
2 files changed, 73 insertions, 2 deletions
diff --git a/media-sound/jack-audio-connection-kit/ChangeLog b/media-sound/jack-audio-connection-kit/ChangeLog index f3e1b7c8aa63..a7307c2b0640 100644 --- a/media-sound/jack-audio-connection-kit/ChangeLog +++ b/media-sound/jack-audio-connection-kit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/jack-audio-connection-kit -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/ChangeLog,v 1.126 2010/06/12 17:15:24 aballier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/ChangeLog,v 1.127 2011/04/03 13:31:33 aballier Exp $ + +*jack-audio-connection-kit-0.120.1 (03 Apr 2011) + + 03 Apr 2011; Alexis Ballier <aballier@gentoo.org> + +jack-audio-connection-kit-0.120.1.ebuild: + version bump 12 Jun 2010; Alexis Ballier <aballier@gentoo.org> jack-audio-connection-kit-0.118.0.ebuild, diff --git a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.120.1.ebuild b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.120.1.ebuild new file mode 100644 index 000000000000..03c68f3f2536 --- /dev/null +++ b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.120.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.120.1.ebuild,v 1.1 2011/04/03 13:31:33 aballier Exp $ + +EAPI=2 + +inherit flag-o-matic eutils multilib multilib + +DESCRIPTION="A low-latency audio server" +HOMEPAGE="http://www.jackaudio.org" +SRC_URI="http://www.jackaudio.org/downloads/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="3dnow altivec alsa coreaudio doc debug examples mmx oss sse cpudetection" + +RDEPEND=">=media-libs/libsndfile-1.0.0 + sys-libs/ncurses + alsa? ( >=media-libs/alsa-lib-1.0.18 ) + media-libs/libsamplerate + !media-sound/jack-cvs" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +src_prepare() { + epatch "${FILESDIR}/${PN}-sparc-cpuinfo.patch" +} + +src_configure() { + local myconf="" + + # CPU Detection (dynsimd) uses asm routines which requires 3dnow, mmx and sse. + if use cpudetection && use 3dnow && use mmx && use sse ; then + einfo "Enabling cpudetection (dynsimd). Adding -mmmx, -msse, -m3dnow and -O2 to CFLAGS." + myconf="${myconf} --enable-dynsimd" + append-flags -mmmx -msse -m3dnow -O2 + fi + + use doc || export ac_cv_prog_HAVE_DOXYGEN=false + + econf \ + $(use_enable altivec) \ + $(use_enable alsa) \ + $(use_enable coreaudio) \ + $(use_enable debug) \ + $(use_enable mmx) \ + $(use_enable oss) \ + --disable-portaudio \ + $(use_enable sse) \ + --with-html-dir=/usr/share/doc/${PF} \ + --disable-dependency-tracking \ + ${myconf} || die "configure failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS TODO README + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r "${S}/example-clients" + fi +} |