summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Bormolini <lordjoe@gentoo.org>2001-10-27 20:36:02 +0000
committerJoe Bormolini <lordjoe@gentoo.org>2001-10-27 20:36:02 +0000
commit13bab188430283bd8fd3f50f16d49c0c2a1c359d (patch)
tree7135d13cae748193be98f1dcc742ecd7dcc3ad11 /media-libs/sdl-mixer
parentnew xpdf with freetype2 support (diff)
downloadgentoo-2-13bab188430283bd8fd3f50f16d49c0c2a1c359d.tar.gz
gentoo-2-13bab188430283bd8fd3f50f16d49c0c2a1c359d.tar.bz2
gentoo-2-13bab188430283bd8fd3f50f16d49c0c2a1c359d.zip
clean up. was using both try and die
Diffstat (limited to 'media-libs/sdl-mixer')
-rw-r--r--media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild b/media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild
index 3b96c96a348e..5d5a5d296644 100644
--- a/media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild
+++ b/media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild
@@ -1,7 +1,7 @@
# Copyriht 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild,v 1.2 2001/10/07 11:11:08 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.0-r1.ebuild,v 1.3 2001/10/27 20:36:02 lordjoe Exp $
A=SDL_mixer-${PV}.tar.gz
S=${WORKDIR}/SDL_mixer-${PV}
@@ -15,13 +15,13 @@ DEPEND="virtual/glibc
ogg? ( >=media-libs/libvorbis-1.0_beta4 )"
src_compile() {
- try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man || die
- try emake || die
+ ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man || die
+ emake || die
}
src_install() {
cd ${S}
- try make DESTDIR=${D} install || die
+ make DESTDIR=${D} install || die
preplib /usr
dodoc CHANGES COPYING README
}