blob: 2d0cdb876688338653336bd024a2f345cfc6a02e (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/solfege/solfege-3.14.2.ebuild,v 1.5 2009/12/26 17:40:27 pva Exp $
EAPI=2
DESCRIPTION="GNU Solfege is a program written to help you practice ear training."
HOMEPAGE="http://www.solfege.org"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="oss"
RDEPEND=">=dev-lang/python-2.5
gnome-base/librsvg
app-text/ghostscript-gpl
>=dev-python/pygtk-2.12"
DEPEND="${RDEPEND}
dev-lang/swig
sys-devel/gettext
sys-apps/texinfo
dev-util/pkgconfig
dev-libs/libxslt
app-text/txt2man
>=app-text/docbook-xsl-stylesheets-1.60"
src_configure() {
local xslloc=$( xmlcatalog /etc/xml/catalog http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl | sed 's@file://@@' )
econf \
--enable-docbook-stylesheet=${xslloc} \
$(use_enable oss oss-sound)
}
src_compile() {
LANGUAGE=C emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS *hange*og FAQ README
}
|