blob: 71b9f7b6d93674c95ea16ed5b32d829951cbe90f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/soundconverter/soundconverter-0.8.3.ebuild,v 1.2 2006/01/30 22:10:04 chutzpah Exp $
inherit eutils
DESCRIPTION="A simple sound converter application for the GNOME environment."
HOMEPAGE="http://soundconverter.berlios.de/"
SRC_URI="http://download.berlios.de/soundconverter/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mp3 vorbis flac"
RDEPEND="virtual/python
>=x11-libs/gtk+-2
>=dev-python/pygtk-2.0.0
>=dev-python/gnome-python-2.0
gnome-base/libglade
gnome-base/gconf
gnome-base/gnome-vfs
=media-libs/gstreamer-0.8*
=dev-python/gst-python-0.8*
vorbis? ( =media-plugins/gst-plugins-vorbis-0.8* )
flac? ( =media-plugins/gst-plugins-flac-0.8* )
mp3? ( =media-plugins/gst-plugins-lame-0.8* )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-makefile-fix.diff
}
src_compile() {
einfo "No compilation necessary"
}
src_install () {
make prefix=/usr DESTDIR=${D} install || die
}
|