diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-09-14 21:04:55 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-09-14 21:04:55 +0000 |
commit | 54024aa54256b1cde02a0e5c050e13072b6e52bc (patch) | |
tree | 0c1b87c1a6df839ed547c8aec3c6b10a978c2f73 /app-text/yudit | |
parent | buglet fix (diff) | |
download | gentoo-2-54024aa54256b1cde02a0e5c050e13072b6e52bc.tar.gz gentoo-2-54024aa54256b1cde02a0e5c050e13072b6e52bc.tar.bz2 gentoo-2-54024aa54256b1cde02a0e5c050e13072b6e52bc.zip |
emake->make
Diffstat (limited to 'app-text/yudit')
-rw-r--r-- | app-text/yudit/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/yudit/yudit-2.6.ebuild | 18 |
2 files changed, 11 insertions, 14 deletions
diff --git a/app-text/yudit/ChangeLog b/app-text/yudit/ChangeLog index bace824c34cd..10de24aca30b 100644 --- a/app-text/yudit/ChangeLog +++ b/app-text/yudit/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for app-text/yudit # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.3 2002/08/09 00:27:20 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.4 2002/09/14 21:04:55 seemant Exp $ *yudit-2.6 (14 May 2002) + 14 Sep 2002; Seemant Kulleen <seemant@gentoo.org> yudit-2.6.ebuild : + + emake->make, thanks to: ryan.shaw@stanfordalumni.org (Ryan Shaw) in bug + #7819 + 2 Aug 2002; phoen][x <phoenix@gentoo.org> yudit-2.6.ebuild : Added KEYWORDS, SLOT. diff --git a/app-text/yudit/yudit-2.6.ebuild b/app-text/yudit/yudit-2.6.ebuild index a302fac43b72..49b64ba64022 100644 --- a/app-text/yudit/yudit-2.6.ebuild +++ b/app-text/yudit/yudit-2.6.ebuild @@ -1,30 +1,22 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.6.ebuild,v 1.4 2002/08/16 02:42:02 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.6.ebuild,v 1.5 2002/09/14 21:04:55 seemant 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" -KEYWORDS="x86 sparc sparc64" -SLOT="0" +SLOT="0" LICENSE="GPL-2" +KEYWORDS="x86 sparc sparc64" DEPEND="virtual/x11 >=sys-devel/gettext-0.10" -RDEPEND= src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" - emake || die + econf || die + emake || make || die } src_install () { |