blob: bd141395f0e625905e204bbbbcaeff4f14af2684 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-1.0.2.ebuild,v 1.15 2005/12/26 15:03:52 lu_zero Exp $
IUSE="nls gnome vorbis debug alsa"
inherit eutils
DESCRIPTION="an audio file editing utility"
HOMEPAGE="http://glame.sourceforge.net/"
SRC_URI="mirror://sourceforge/glame/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc amd64 ~ppc"
RDEPEND=">=dev-util/guile-1.4-r3
>=dev-libs/libxml-1.8.0
>=dev-libs/libxml2-2.0.0
>=media-sound/esound-0.2
>=media-libs/audiofile-0.2.2
=sci-libs/fftw-2*
media-sound/madplay
media-libs/ladspa-sdk
vorbis? ( >=media-libs/libvorbis-1.0 )
gnome? ( <gnome-base/libglade-2 gnome-base/gnome-libs )
alsa? ( media-libs/alsa-lib )"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.58
nls? ( >=sys-devel/gettext-0.11.3 )"
src_unpack() {
unpack ${A}
# fix NLS problem (bug #7587)
if ! use nls
then
cd ${S}/src/gui
mv swapfilegui.c swapfilegui.c.bad
sed -e "s:#include <libintl.h>::" swapfilegui.c.bad > swapfilegui.c
fi
# fix makefile problem
export WANT_AUTOCONF=2.5
cd ${S}/libltdl
autoconf -f
cd ${S}
epatch ${FILESDIR}/gentoo.patch
epatch ${FILESDIR}/${P}-cflags.patch
}
src_compile() {
local myconf="--enable-ladspa"
if use gnome
then
# Use a valid icon for the GNOME menu entry
cp src/gui/glame.desktop src/gui/glame.desktop.old
sed -e 's:glame.png:glame-logo.jpg:' \
src/gui/glame.desktop.old > src/gui/glame.desktop
rm src/gui/glame.desktop.old
fi
use nls && myconf="--enable-nls" \
|| myconf="--disable-nls"
use gnome && myconf="${myconf} --enable-gui" \
|| myconf="${myconf} --disable-gui"
use debug && myconf="${myconf} --enable-swapfiledebug --enable-debug" \
|| myconf="${myconf} --disable-swapfiledebug --disable-debug"
use alsa || myconf="${myconf} --disable-alsatest"
econf ${myconf} || die "Configuration failed"
emake || die "Compilation failed"
}
src_install () {
einstall || die "Installation failed"
if use gnome
then
dodir /usr/share/pixmaps
dosym ../glame/pixmaps/glame-logo.jpg \
/usr/share/pixmaps/glame-logo.jpg
fi
dodoc AUTHORS BUGS CREDITS ChangeLog MAINTAINERS \
NEWS README TODO
}
|