# 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="Jack multichannel audio level meter app" # this should be a short description of your package SRC_URI="http://www.kokkinizita.net/linuxaudio/downloads/${P}.tar.bz2" HOMEPAGE="http://www.kokkinizita.net/linuxaudio/downloads" IUSE="" # this is for useflags DEPEND="media-sound/jack-audio-connection-kit >=media-libs/libclthreads-2.2.1 >=media-libs/libclxclient-3.3.2" # Change Makefile PREFIX and compile src_compile() { sed -i -e 's#PREFIX = /usr/local#PREFIX = /usr#g' ${S}/source/Makefile cd source emake || die "make failed" } src_install() { dobin source/jmeters insinto /usr/share/jmeters doins share/*.png dodoc AUTHORS COPYING README }