[proaudio] Thats the jackmixdesk ebuild I made. Partly worked. |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit autotools
DESCRIPTION="JackMixDesk is an audio mixer for JACK with an OSC control
interface and LASH support and a GTK gui"
HOMEPAGE="http://sourceforge.net/projects/jackmixdesk"
SRC_URI="mirror://sourceforge/jackmixdesk/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE="gtk+"
RDEPEND=">=media-sound/jack-audio-connection-kit-0.100.0
=x11-libs/gtk+-2*
media-sound/lash
media-libs/liblo
media-libs/phat
net-dns/libidn"
DEPEND="${RDEPEND}
>=dev-libs/libxml2-2.6.28
>=dev-util/pkgconfig-0.9"
src_compile() {
eautoreconf || die "autoconf failed"
econf || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc README ChangeLog AUTHORS TODO
}