blob: c21fff2181238544fefd101532d76aad17589a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.2.3-r1.ebuild,v 1.4 2012/05/05 08:05:35 mgorny Exp $
EAPI=4
inherit base autotools
MY_P=${P/ams/amS}
DESCRIPTION="Virtual analogue synthesizer."
HOMEPAGE="http://amsynthe.sourceforge.net/"
SRC_URI="mirror://sourceforge/amsynthe/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="alsa debug jack oss sndfile"
RDEPEND="dev-cpp/gtkmm:2.4
sndfile? ( >=media-libs/libsndfile-1 )
alsa? ( media-libs/alsa-lib
media-sound/alsa-utils )
jack? ( media-sound/jack-audio-connection-kit )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
src_prepare() {
base_src_prepare
eautoreconf
}
src_configure() {
econf \
$(use_with oss) \
$(use_with alsa) \
$(use_with jack) \
$(use_with sndfile) \
$(use_enable debug)
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS README
}
pkg_postinst() {
elog
elog "amSynth has been installed normally. If you would like to use"
elog "the virtual keyboard option, then do:"
elog "# emerge vkeybd"
elog "and make sure you emerged amSynth with alsa support (USE=alsa)"
elog
}
|