# ChangeLog for media-sound/jack-rack
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-rack/ChangeLog,v 1.21 2006/10/05 22:15:04 gustavoz Exp $
+# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-rack/ChangeLog,v 1.22 2007/01/14 02:20:58 matsuu Exp $
+
+*jack-rack-1.4.5 (14 Jan 2007)
+
+ 14 Jan 2007; MATSUU Takuto <matsuu@gentoo.org>
+ -files/jack-rack-1.4.3-gtkdep.patch, -jack-rack-1.4.3.ebuild,
+ +jack-rack-1.4.5.ebuild:
+ Version bumped, bug #160499.
05 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org>
jack-rack-1.4.4.ebuild:
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-rack/jack-rack-1.4.5.ebuild,v 1.1 2007/01/14 02:20:58 matsuu Exp $
+
+IUSE="alsa gnome lash nls xml"
+
+DESCRIPTION="JACK Rack is an effects rack for the JACK low latency audio API."
+HOMEPAGE="http://jack-rack.sourceforge.net/"
+SRC_URI="mirror://sourceforge/jack-rack/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+DEPEND=">=x11-libs/gtk+-2
+ >=media-libs/ladspa-sdk-1.12
+ media-sound/jack-audio-connection-kit
+ alsa? ( media-libs/alsa-lib )
+ lash? ( >=media-sound/lash-0.5 )
+ gnome? ( >=gnome-base/libgnomeui-2 )
+ nls? ( sys-devel/gettext )
+ xml? ( dev-libs/libxml2
+ media-libs/liblrdf )"
+
+MAKEOPTS="-j1"
+
+src_compile() {
+ local myconf
+ myconf="--disable-ladcca --enable-desktop-inst"
+
+ econf \
+ $(use_enable alsa aseq) \
+ $(use_enable gnome) \
+ $(use_enable lash) \
+ $(use_enable nls) \
+ $(use_enable xml) \
+ $(use_enable xml lrdf ) \
+ ${myconf} || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO WISHLIST
+}