# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils SLOT="0" # Always set this one to 0, its only for packages with multiple versions like gcc for example LICENSE="GPL-2" # Licences we hate them, but we need them KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~ppc-macos ~s390 ~sh ~sparc ~x86 ~x86-fbsd" DESCRIPTION="Recording of Transmission / Audio Logger for JACK" # this should be a short description of your package SRC_URI="http://www.ecs.soton.ac.uk/~njh/rotter/${P}.tar.gz" HOMEPAGE="http://www.ecs.soton.ac.uk/~njh/rotter" IUSE="" # this is for useflags DEPEND="media-sound/jack-audio-connection-kit media-sound/lame media-sound/twolame media-libs/libsndfile" src_compile() { econf || die "configure failed" emake || die "make failed" } src_install() { emake install DESTDIR="${D}" }