# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-0.6.3.ebuild,v 1.7 2004/01/21 18:42:53 raker Exp $ IUSE="nls gnome" S=${WORKDIR}/${P} DESCRIPTION="Glame is an audio file editing utility" SRC_URI="mirror://sourceforge/glame/${P}.tar.gz" HOMEPAGE="http://glame.sourceforge.net/" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86" DEPEND=">=dev-util/guile-1.4-r3 dev-libs/libxml2 >=media-sound/esound-0.2 media-libs/audiofile gnome? ( ::" swapfilegui.c.bad > swapfilegui.c fi } src_compile() { 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 local myconf="" use nls && myconf="--enable-nls" \ || myconf="--disable-nls" use gnome || myconf="$myconf --disable-gui" # needed to not break configure unset CFLAGS econf --with-included-gettext ${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 ABOUT-NLS AUTHORS BUGS COPYING CREDITS ChangeLog MAINTAINERS \ NEWS README TODO }