# 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="A silence/dead air detector for the Jack Audio Connection Kit" SRC_URI="http://www.aelius.com/njh/silentjack/${P}.tar.gz" HOMEPAGE="http://www.aelius.com/njh/silentjack/" IUSE="" # this is for useflags DEPEND="media-sound/jack-audio-connection-kit" src_compile() { econf || die "configure failed" emake || die "make failed" } src_install() { emake install DESTDIR="${D}" }