Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/soundconverter/
Date: Sun, 21 Feb 2016 09:37:25
Message-Id: 1456047426.7af16ec37cff9558ae38d2b0b59378a85fb271ab.pacho@gentoo
1 commit: 7af16ec37cff9558ae38d2b0b59378a85fb271ab
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 21 09:36:10 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 21 09:37:06 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af16ec3
7
8 media-sound/soundconverter: Version bump
9
10 Package-Manager: portage-2.2.27
11
12 media-sound/soundconverter/Manifest | 1 +
13 .../soundconverter/soundconverter-2.1.6.ebuild | 57 ++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/media-sound/soundconverter/Manifest b/media-sound/soundconverter/Manifest
17 index e6c0c74..e2d7a6d 100644
18 --- a/media-sound/soundconverter/Manifest
19 +++ b/media-sound/soundconverter/Manifest
20 @@ -1 +1,2 @@
21 DIST soundconverter-2.1.5.tar.xz 195380 SHA256 cace2109b967744325e4ce8938d286b78b86f0615d4f145966f42decc7a74e06 SHA512 6d42bd2cfa200e7af8c69ce94580a4f96bdb0354623207e5d1c3beadee89920363b5b8cee4cdcfa6fcbd036860d50f739b05e34e9a34608fe3d6243876936c6a WHIRLPOOL e3f9ea4bbe012aa8b977321ee85601c69d67324b35654b494ffe6792af8043a21af7d7d429929cea28fe7273e08e11f93da9b00cb4f99c88f22266e6b0c3419d
22 +DIST soundconverter-2.1.6.tar.xz 195864 SHA256 2ffb6718d8e43a67be4d99e5a9c7b5cd82fce15d30b4861608b7d1666884a690 SHA512 d607d4c260f0b8d810f7251f9bbcd02359984dd2a8bf3340be14602e3392362b9a6bc54a9f0c20f16bfee2f971f784a4093f535307dfb2d6087fb4492511a9ba WHIRLPOOL cfabdedc4cda2ec36537ec95443d0735905c13c369a6916842959a831fcceb322f3a2dfc47d3be0897b3a982cc10797dd89145a51550e9e4ef0d809c01b246ef
23
24 diff --git a/media-sound/soundconverter/soundconverter-2.1.6.ebuild b/media-sound/soundconverter/soundconverter-2.1.6.ebuild
25 new file mode 100644
26 index 0000000..29534f1
27 --- /dev/null
28 +++ b/media-sound/soundconverter/soundconverter-2.1.6.ebuild
29 @@ -0,0 +1,57 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +GCONF_DEBUG=no
36 +PYTHON_COMPAT=( python2_7 )
37 +
38 +inherit eutils gnome2 multilib python-single-r1
39 +
40 +DESCRIPTION="A simple audiofile converter application for the GNOME environment"
41 +HOMEPAGE="http://soundconverter.org/"
42 +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.xz"
43 +
44 +LICENSE="GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +IUSE="aac flac mp3 opus vorbis"
49 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 +
51 +RDEPEND="${PYTHON_DEPS}
52 + dev-python/gconf-python[${PYTHON_USEDEP}]
53 + dev-python/gnome-vfs-python[${PYTHON_USEDEP}]
54 + dev-python/gst-python:0.10[${PYTHON_USEDEP}]
55 + dev-python/pygobject:2[${PYTHON_USEDEP}]
56 + >=dev-python/pygtk-2.12[${PYTHON_USEDEP}]
57 + dev-python/libgnome-python[${PYTHON_USEDEP}]
58 + gnome-base/libglade[${PYTHON_USEDEP}]
59 + aac? (
60 + media-plugins/gst-plugins-faac:0.10
61 + media-plugins/gst-plugins-faad:0.10 )
62 + flac? ( media-plugins/gst-plugins-flac:0.10 )
63 + mp3? (
64 + media-plugins/gst-plugins-lame:0.10
65 + media-plugins/gst-plugins-mad:0.10
66 + media-plugins/gst-plugins-taglib:0.10 )
67 + vorbis? (
68 + media-plugins/gst-plugins-ogg:0.10
69 + media-plugins/gst-plugins-vorbis:0.10 )
70 + opus? ( media-plugins/gst-plugins-opus:0.10 )
71 +"
72 +DEPEND="${RDEPEND}
73 + dev-util/intltool
74 + virtual/pkgconfig
75 + sys-devel/gettext
76 +"
77 +
78 +src_prepare() {
79 + python_fix_shebang .
80 + gnome2_src_prepare
81 +}
82 +
83 +src_install() {
84 + gnome2_src_install
85 + python_optimize "${ED%/}"/usr/$(get_libdir)/soundconverter/python
86 +}