summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-12-18 16:27:04 +0000
committerMike Frysinger <vapier@gentoo.org>2002-12-18 16:27:04 +0000
commitf8c32e12fa71f35572735dd2244d4ecfe0331312 (patch)
tree82108dfcf1a1c4f6a53b9a4c37d9a7796ce65994 /app-text
parentChanged einstall||die to einstall (diff)
downloadgentoo-2-f8c32e12fa71f35572735dd2244d4ecfe0331312.tar.gz
gentoo-2-f8c32e12fa71f35572735dd2244d4ecfe0331312.tar.bz2
gentoo-2-f8c32e12fa71f35572735dd2244d4ecfe0331312.zip
Changed econf||die to econf
Diffstat (limited to 'app-text')
-rw-r--r--app-text/sablotron/sablotron-0.96.ebuild15
1 files changed, 6 insertions, 9 deletions
diff --git a/app-text/sablotron/sablotron-0.96.ebuild b/app-text/sablotron/sablotron-0.96.ebuild
index 649e84be9935..50db14fb430a 100644
--- a/app-text/sablotron/sablotron-0.96.ebuild
+++ b/app-text/sablotron/sablotron-0.96.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.96.ebuild,v 1.3 2002/12/09 04:17:45 manson Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.96.ebuild,v 1.4 2002/12/18 16:27:04 vapier Exp $
MY_P="Sablot-${PV}"
S=${WORKDIR}/${MY_P}
@@ -10,7 +10,7 @@ HOMEPAGE="http://www.gingerall.com/charlie-bin/get/webGA/act/sablotron.act"
SLOT="0"
LICENSE="MPL-1.1"
-KEYWORDS="~x86 ~sparc "
+KEYWORDS="~x86 ~sparc"
DEPEND=">=dev-libs/expat-1.95.1"
@@ -18,25 +18,22 @@ src_unpack() {
unpack ${A}
cd ${S}/src/engine
patch -p0 < ${FILESDIR}/Sablot-0.96.1.patch || die
-
}
src_compile() {
-
local myconf
-
use perl && myconf="--enable-perlconnect"
# rphillips
# fixes bug #3876
export LDFLAGS="-lstdc++"
-
- econf ${myconf} || die
+
+ econf ${myconf}
make || die
}
-src_install () {
- einstall || die
+src_install() {
+ einstall
dodoc README* RELEASE
dodoc src/TODO
}