diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 21:30:00 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 21:30:00 +0000 |
commit | 0fa50ce53df6104514f6010a0817b585887d494b (patch) | |
tree | 52035f32a2cc580cae7bf8da515e1027a57ca937 /net-www/amaya/amaya-4.1-r1.ebuild | |
parent | removed older ebuilds (diff) | |
download | gentoo-2-0fa50ce53df6104514f6010a0817b585887d494b.tar.gz gentoo-2-0fa50ce53df6104514f6010a0817b585887d494b.tar.bz2 gentoo-2-0fa50ce53df6104514f6010a0817b585887d494b.zip |
cleanup
Diffstat (limited to 'net-www/amaya/amaya-4.1-r1.ebuild')
-rw-r--r-- | net-www/amaya/amaya-4.1-r1.ebuild | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/net-www/amaya/amaya-4.1-r1.ebuild b/net-www/amaya/amaya-4.1-r1.ebuild index c4b4ed8ddc6d..40afb6bbc114 100644 --- a/net-www/amaya/amaya-4.1-r1.ebuild +++ b/net-www/amaya/amaya-4.1-r1.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# Author Your Name <your email> -# $Header: /var/cvsroot/gentoo-x86/net-www/amaya/amaya-4.1-r1.ebuild,v 1.1 2001/10/06 11:33:58 verwilst Exp $ +# Author: Bart Verwilst <verwilst@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-www/amaya/amaya-4.1-r1.ebuild,v 1.2 2002/04/27 21:28:05 seemant Exp $ -#P= -A=${PN}-src-${PV}.tgz S=${WORKDIR}/Amaya/LINUX-ELF DESCRIPTION="The W3C Web-Browser" SRC_URI="ftp://ftp.w3.org/pub/amaya/${PN}-src-${PV}.tgz" @@ -15,22 +13,22 @@ RDEPEND=">=x11-libs/openmotif-2.1.30" src_compile() { - mkdir ${S} - cd ${S} + mkdir ${S} + cd ${S} - try ../configure --prefix=/usr --host=${CHOST} - try make + ../configure --prefix=/usr --host=${CHOST} || die + make || die } src_install () { - dodir /usr - try make prefix=${D}/usr install - rm ${D}/usr/bin/amaya - rm ${D}/usr/bin/print - dosym /usr/Amaya/applis/bin/amaya /usr/bin/amaya - dosym /usr/Amaya/applis/bin/print /usr/bin/print - + dodir /usr + make prefix=${D}/usr install || die + rm ${D}/usr/bin/amaya + rm ${D}/usr/bin/print + dosym /usr/Amaya/applis/bin/amaya /usr/bin/amaya + dosym /usr/Amaya/applis/bin/print /usr/bin/print + } |