37 lines
874 B
Bash
37 lines
874 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/ams/ams-2.0.1.ebuild,v 1.6 2013/03/02 21:53:05 hwoarang Exp $
|
|
|
|
EAPI=4
|
|
inherit autotools eutils flag-o-matic multilib
|
|
|
|
DESCRIPTION="Alsa Modular Software Synthesizer"
|
|
HOMEPAGE="http://alsamodular.sourceforge.net"
|
|
SRC_URI="mirror://sourceforge/alsamodular/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="media-libs/alsa-lib
|
|
media-sound/jack-audio-connection-kit
|
|
dev-qt/qtgui:4
|
|
dev-qt/qtopengl:4
|
|
media-libs/ladspa-sdk
|
|
media-libs/libclalsadrv
|
|
!dev-ruby/amrita"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
DOCS="AUTHORS ChangeLog NEWS README THANKS"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-dl.patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
append-ldflags -L/usr/$(get_libdir)/qt4
|
|
econf
|
|
}
|