Files
@ 39d1268394e4
Branch filter:
Location: ohnobinki_overlay/media-sound/sound-juicer/sound-juicer-2.20.1-r1.ebuild - annotation
39d1268394e4
1.6 KiB
application/vnd.gentoo.ebuild
media-sound/glame fixed problem with newer guile
Without this patch, and using guile-8.5* and compiling media-sounds/glame with USE=gnome, I and another person got the following compile error:
glame_console.o: In function `port_register':
/var/tmp/portage/media-sound/glame-2.0.1/work/glame-2.0.1/src/gui/glame_console.c:63: undefined reference to `GLAME_NEWCELL'
/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.1/../../../../x86_64-pc-linux-gnu/bin/ld: link errors found, deleting executable `glame'
collect2: ld returned 1 exit status
Without this patch, and using guile-8.5* and compiling media-sounds/glame with USE=gnome, I and another person got the following compile error:
glame_console.o: In function `port_register':
/var/tmp/portage/media-sound/glame-2.0.1/work/glame-2.0.1/src/gui/glame_console.c:63: undefined reference to `GLAME_NEWCELL'
/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.1/../../../../x86_64-pc-linux-gnu/bin/ld: link errors found, deleting executable `glame'
collect2: ld returned 1 exit status
5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 | # Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sound-juicer/sound-juicer-2.20.1-r1.ebuild,v 1.7 2008/02/04 04:12:13 jer Exp $
inherit gnome2 eutils
EAPI="1"
DESCRIPTION="CD ripper for GNOME 2"
HOMEPAGE="http://www.burtonini.com/blog/computers/sound-juicer/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="flac ogg test"
RDEPEND=">=dev-libs/glib-2
>=gnome-extra/nautilus-cd-burner-2.15.3
>=x11-libs/gtk+-2.8
>=gnome-base/libglade-2
>=gnome-base/gconf-2
>=gnome-base/libgnomeui-2.13
>=gnome-base/gnome-vfs-2.9
>=media-libs/gstreamer-0.10.5
>=gnome-extra/gnome-media-2.11.91
>=media-libs/musicbrainz-2.1.3:1
>=dev-libs/libcdio-0.70
media-libs/taglib
>=media-libs/gst-plugins-base-0.10
>=media-plugins/gst-plugins-gconf-0.10
>=media-plugins/gst-plugins-gnomevfs-0.10
>=media-plugins/gst-plugins-cdparanoia-0.10
ogg? ( >=media-plugins/gst-plugins-ogg-0.10 )
flac? ( >=media-plugins/gst-plugins-flac-0.10 )"
DEPEND="${RDEPEND}
app-text/gnome-doc-utils
>=dev-util/intltool-0.35
>=app-text/scrollkeeper-0.3.5
>=dev-util/pkgconfig-0.9
test? ( ~app-text/docbook-xml-dtd-4.3 )"
DOCS="AUTHORS ChangeLog NEWS README TODO"
# needed to get around some sandboxing checks
export GST_INSPECT=/bin/true
src_unpack() {
gnome2_src_unpack
# Fix tests. Upstream SVN has this fixed so we can probably remove it for next version
epatch "${FILESDIR}/help_es_fix.patch"
echo "data/sound-juicer.desktop.in" >> "${S}/po/POTFILES.skip"
}
pkg_setup() {
G2CONF="${G2CONF} --disable-scrollkeeper"
}
|