diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-20 19:29:33 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-20 19:29:33 +0000 |
commit | eb6916cbf3944a9e14633d37d2ef23889d36bd0d (patch) | |
tree | 73d50f8bcd0b8df24d9e4d2c5693a5d6ef9a8859 /media-sound/soundconverter/soundconverter-2.1.3.ebuild | |
parent | version bump, bug #509432 (diff) | |
download | gentoo-2-eb6916cbf3944a9e14633d37d2ef23889d36bd0d.tar.gz gentoo-2-eb6916cbf3944a9e14633d37d2ef23889d36bd0d.tar.bz2 gentoo-2-eb6916cbf3944a9e14633d37d2ef23889d36bd0d.zip |
Version bump, migrate to new python eclasses (#486962 by hasufell), drop old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'media-sound/soundconverter/soundconverter-2.1.3.ebuild')
-rw-r--r-- | media-sound/soundconverter/soundconverter-2.1.3.ebuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/media-sound/soundconverter/soundconverter-2.1.3.ebuild b/media-sound/soundconverter/soundconverter-2.1.3.ebuild new file mode 100644 index 000000000000..e0140663aa72 --- /dev/null +++ b/media-sound/soundconverter/soundconverter-2.1.3.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/soundconverter/soundconverter-2.1.3.ebuild,v 1.1 2014/05/20 19:29:33 pacho Exp $ + +# TODO: convert +# dev-python/gconf-python +# dev-python/gnome-vfs-python +# dev-python/libgnome-python +# See bug #477814 + +EAPI=5 + +GCONF_DEBUG=no +PYTHON_COMPAT=( python2_7 ) +inherit gnome2 multilib python-single-r1 + +DESCRIPTION="A simple audiofile converter application for the GNOME environment" +HOMEPAGE="http://soundconverter.org/" +SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="aac flac mp3 opus vorbis" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + dev-python/gconf-python + dev-python/gnome-vfs-python + =dev-python/gst-python-0.10*[${PYTHON_USEDEP}] + dev-python/pygobject:2[${PYTHON_USEDEP}] + >=dev-python/pygtk-2.12[${PYTHON_USEDEP}] + dev-python/libgnome-python + gnome-base/libglade + aac? ( + =media-plugins/gst-plugins-faac-0.10* + =media-plugins/gst-plugins-faad-0.10* + ) + flac? ( =media-plugins/gst-plugins-flac-0.10* ) + mp3? ( + =media-plugins/gst-plugins-lame-0.10* + =media-plugins/gst-plugins-mad-0.10* + =media-plugins/gst-plugins-taglib-0.10* + ) + vorbis? ( + =media-plugins/gst-plugins-ogg-0.10* + =media-plugins/gst-plugins-vorbis-0.10* + ) + opus? ( + =media-plugins/gst-plugins-opus-0.10* + ) +" +DEPEND="${RDEPEND} + app-arch/xz-utils + dev-util/intltool + virtual/pkgconfig + sys-devel/gettext +" + +src_prepare() { + python_fix_shebang . + gnome2_src_prepare +} + +src_install() { + gnome2_src_install + python_optimize "${ED%/}"/usr/$(get_libdir)/soundconverter/python +} |