diff options
author | Tim Harder <radhermit@gentoo.org> | 2010-12-30 06:35:24 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2010-12-30 06:35:24 +0000 |
commit | c10d22369d81c2c7366480c2c08d8ff10387cf4f (patch) | |
tree | 52f6c32f4092fc805065ea23ab9ba5a024e88758 /media-sound/solfege/solfege-3.19.2.ebuild | |
parent | Version bumped. (diff) | |
download | gentoo-2-c10d22369d81c2c7366480c2c08d8ff10387cf4f.tar.gz gentoo-2-c10d22369d81c2c7366480c2c08d8ff10387cf4f.tar.bz2 gentoo-2-c10d22369d81c2c7366480c2c08d8ff10387cf4f.zip |
Version bump and remove old.
(Portage version: 2.2.0_alpha9/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/solfege/solfege-3.19.2.ebuild')
-rw-r--r-- | media-sound/solfege/solfege-3.19.2.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/media-sound/solfege/solfege-3.19.2.ebuild b/media-sound/solfege/solfege-3.19.2.ebuild new file mode 100644 index 000000000000..5aba4ac1be0c --- /dev/null +++ b/media-sound/solfege/solfege-3.19.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/solfege/solfege-3.19.2.ebuild,v 1.1 2010/12/30 06:35:24 radhermit Exp $ + +EAPI=2 +PYTHON_DEPEND="2:2.6" +PYTHON_USE_WITH="sqlite" +inherit python eutils + +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="alsa oss" + +RDEPEND=">=dev-python/pygtk-2.12 + alsa? ( dev-python/pyalsa )" +DEPEND="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" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + sed -i \ + -e '/^CFLAGS/s:-I/usr/src/linux/include::' \ + solfege/soundcard/Makefile || die "sed failed" +} + +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_install() { + emake DESTDIR="${D}" nopycompile=YES install || die "emake install failed" + dodoc AUTHORS *hange*og FAQ README +} |