29 lines
791 B
Bash
29 lines
791 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/phasex/phasex-0.12.0_beta3.ebuild,v 1.1 2009/08/05 12:39:54 ssuominen Exp $
|
|
|
|
EAPI=2
|
|
|
|
DESCRIPTION="Software synthesizer (Phase Harmonic Advanced Synthesis EXperiment)"
|
|
HOMEPAGE="http://sysex.net/phasex/"
|
|
SRC_URI="http://sysex.net/phasex/beta/${P/_}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/libX11
|
|
media-sound/jack-audio-connection-kit
|
|
media-libs/alsa-lib
|
|
media-libs/libsamplerate
|
|
x11-libs/gtk+:2"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/pkgconfig"
|
|
|
|
S=${WORKDIR}/${P/_beta3}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
dodoc AUTHORS ChangeLog README TODO doc/ROADMAP
|
|
}
|