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 | 4570b2b314698f624d46f12bd10c1657533e69b2 (patch) | |
tree | f0247debb3bc82295b378a239939b14873cbd0a7 /app-text/yudit | |
parent | buglet fix (diff) | |
download | historical-4570b2b314698f624d46f12bd10c1657533e69b2.tar.gz historical-4570b2b314698f624d46f12bd10c1657533e69b2.tar.bz2 historical-4570b2b314698f624d46f12bd10c1657533e69b2.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 () { |