diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 16:27:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 16:27:04 +0000 |
commit | a6c52aa12ff7a6fa8719459f5683e767f9e31816 (patch) | |
tree | 243d23c2a6a6d96878348e726e651d7a1609223b /app-text/sablotron | |
parent | Changed einstall||die to einstall (diff) | |
download | historical-a6c52aa12ff7a6fa8719459f5683e767f9e31816.tar.gz historical-a6c52aa12ff7a6fa8719459f5683e767f9e31816.tar.bz2 historical-a6c52aa12ff7a6fa8719459f5683e767f9e31816.zip |
Changed econf||die to econf
Diffstat (limited to 'app-text/sablotron')
-rw-r--r-- | app-text/sablotron/sablotron-0.96.ebuild | 15 |
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 } |