diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 16:39:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 16:39:55 +0000 |
commit | 97498a3a912ab7da7d316e9181aa546d2c2f2025 (patch) | |
tree | 36c3e60221193285b3f61b1f3ee4629062991a69 /app-text/yudit | |
parent | added ppc to keywords (diff) | |
download | historical-97498a3a912ab7da7d316e9181aa546d2c2f2025.tar.gz historical-97498a3a912ab7da7d316e9181aa546d2c2f2025.tar.bz2 historical-97498a3a912ab7da7d316e9181aa546d2c2f2025.zip |
Changed econf||die to econf
Diffstat (limited to 'app-text/yudit')
-rw-r--r-- | app-text/yudit/yudit-2.6.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
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 } |