| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/media-sound/timemachine/timemachine-0.3.3.ebuild,v 1.1 2011/04/26 18:31:46 aballier Exp $
|
| 4 |
|
| 5 |
EAPI=2
|
| 6 |
|
| 7 |
DESCRIPTION="JACK client record button remembering the last 10 seconds when pressed."
|
| 8 |
HOMEPAGE="http://plugin.org.uk/timemachine/"
|
| 9 |
SRC_URI="http://plugin.org.uk/timemachine/${P}.tar.gz"
|
| 10 |
|
| 11 |
LICENSE="GPL-2"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="~amd64 ~ppc ~x86"
|
| 14 |
IUSE="lash"
|
| 15 |
|
| 16 |
RDEPEND=">=media-sound/jack-audio-connection-kit-0.80
|
| 17 |
x11-libs/gtk+:2
|
| 18 |
>=media-libs/libsndfile-1.0.5
|
| 19 |
media-libs/liblo
|
| 20 |
lash? ( >=media-sound/lash-0.5 )"
|
| 21 |
DEPEND="${RDEPEND}
|
| 22 |
virtual/pkgconfig"
|
| 23 |
|
| 24 |
src_configure() {
|
| 25 |
econf \
|
| 26 |
$(use_enable lash)
|
| 27 |
}
|
| 28 |
|
| 29 |
src_install() {
|
| 30 |
emake DESTDIR="${D}" install || die "emake install failed"
|
| 31 |
dodoc ChangeLog
|
| 32 |
}
|