diff options
author | 2002-12-18 16:43:00 +0000 | |
---|---|---|
committer | 2002-12-18 16:43:00 +0000 | |
commit | 511393fb69b0db923195ada866f6272eeb635d35 (patch) | |
tree | cda232dcda8ac24acb6b9266f3d4fb64132da0eb /app-text | |
parent | added ppc to keywords (diff) | |
download | gentoo-2-511393fb69b0db923195ada866f6272eeb635d35.tar.gz gentoo-2-511393fb69b0db923195ada866f6272eeb635d35.tar.bz2 gentoo-2-511393fb69b0db923195ada866f6272eeb635d35.zip |
Changed econf||die to econf
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/sword/sword-1.5.5.ebuild | 19 | ||||
-rw-r--r-- | app-text/vilistextum/vilistextum-2.6.2.ebuild | 10 | ||||
-rw-r--r-- | app-text/yudit/yudit-2.6.ebuild | 13 |
3 files changed, 14 insertions, 28 deletions
diff --git a/app-text/sword/sword-1.5.5.ebuild b/app-text/sword/sword-1.5.5.ebuild index d8382b60fc2b..11e74e7db4a8 100644 --- a/app-text/sword/sword-1.5.5.ebuild +++ b/app-text/sword/sword-1.5.5.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/sword/sword-1.5.5.ebuild,v 1.1 2002/11/02 19:35:53 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.5.5.ebuild,v 1.2 2002/12/18 16:38:09 vapier Exp $ DESCRIPTION="library for bible reading software" HOMEPAGE="http://www.crosswire.org/sword/" @@ -10,35 +10,23 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -IUSE="" - DEPEND="virtual/glibc sys-libs/zlib" -S="${WORKDIR}/${P}" - src_compile() { - - econf || die "configure failed" - + econf emake || die "parallel make failed" - } src_install() { - - einstall || die "make install failed" + einstall dodoc AUTHORS CODINGSTYLE INSTALL ChangeLog README - cp -R samples examples ${D}/usr/share/doc/${PF} - dohtml doc/api-documentation/html/* - } pkg_postinst() { - einfo "" einfo "Check out http://www.crosswire.org/sword/modules/" einfo "to download modules that you would like to enhance" @@ -46,5 +34,4 @@ pkg_postinst() { einfo "instructions found on the web or in INSTALL.gz found" einfo "in /usr/share/doc/${PF}" einfo "" - } diff --git a/app-text/vilistextum/vilistextum-2.6.2.ebuild b/app-text/vilistextum/vilistextum-2.6.2.ebuild index afc2990204dd..c914358dab6b 100644 --- a/app-text/vilistextum/vilistextum-2.6.2.ebuild +++ b/app-text/vilistextum/vilistextum-2.6.2.ebuild @@ -1,23 +1,23 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.2.ebuild,v 1.7 2002/12/09 04:17:45 manson Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.2.ebuild,v 1.8 2002/12/18 16:39:05 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="Vilistextum is a html to ascii converter specifically programmed to get the best out of incorrect html." SRC_URI="http://www.mysunrise.ch/users/bhaak/vilistextum/${P}.tar.bz2" HOMEPAGE="http://www.mysunrise.ch/users/bhaak/vilistextum/" -KEYWORDS="x86 sparc " + +KEYWORDS="x86 sparc" LICENSE="GPL-2" SLOT="0" DEPEND="virtual/glibc" src_compile() { - econf --enable-multibyte || die + econf --enable-multibyte emake || die } -src_install () { +src_install() { make DESTDIR=${D} install || die dodoc README README.multibyte README.xhtml CHANGES } diff --git a/app-text/yudit/yudit-2.6.ebuild b/app-text/yudit/yudit-2.6.ebuild index 9353f58b1d79..8f1b0729a1da 100644 --- a/app-text/yudit/yudit-2.6.ebuild +++ b/app-text/yudit/yudit-2.6.ebuild @@ -1,24 +1,23 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.6.ebuild,v 1.7 2002/12/09 04:17:45 manson Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.6.ebuild,v 1.8 2002/12/18 16:39:55 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="Yudit is a free (Y)unicode text editor for all unices" SRC_URI="http://yudit.org/download/${P}.tar.gz" -HOMEPAGE="http://www.yudit.org" +HOMEPAGE="http://www.yudit.org/" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 sparc " +KEYWORDS="x86 sparc" DEPEND="virtual/x11 >=sys-devel/gettext-0.10" src_compile() { - econf || die - emake || make || die + econf + make || die } -src_install () { +src_install() { make DESTDIR=${D} install || die } |