diff options
-rw-r--r-- | media-sound/synaesthesia/synaesthesia-2.4.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/media-sound/synaesthesia/synaesthesia-2.4.ebuild b/media-sound/synaesthesia/synaesthesia-2.4.ebuild index b7a93864afb7..505a1fcf036c 100644 --- a/media-sound/synaesthesia/synaesthesia-2.4.ebuild +++ b/media-sound/synaesthesia/synaesthesia-2.4.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild,v 1.3 2008/03/24 13:04:02 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild,v 1.4 2009/05/11 13:43:07 ssuominen Exp $ + +EAPI=2 DESCRIPTION="a nice graphical accompaniment to music" HOMEPAGE="http://www.logarithmic.net/pfh/synaesthesia" @@ -14,20 +16,18 @@ IUSE="sdl svga esd" RDEPEND="x11-libs/libXext x11-libs/libSM esd? ( >=media-sound/esound-0.2.22 ) - sdl? ( >=media-libs/libsdl-1.2.0 ) + sdl? ( >=media-libs/libsdl-1.2 ) svga? ( >=media-libs/svgalib-1.4.3 )" DEPEND="${RDEPEND} x11-proto/xextproto" -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e "/CFLAGS=/s:-O4:${CFLAGS}:" \ - -e "/CXXFLAGS=/s:-O4:${CXXFLAGS}:" configure - sed -i -e 's:void inline:inline void:' syna.h +src_prepare() { + sed -e "/CFLAGS=/s:-O4:${CFLAGS}:" \ + -e "/CXXFLAGS=/s:-O4:${CXXFLAGS}:" -i configure || die "sed failed" + sed -e 's:void inline:inline void:' -i syna.h || die "sed failed" } src_install() { - emake DESTDIR="${D}" install || die "emake install failed." + emake DESTDIR="${D}" install || die "emake install failed" dodoc README } |