summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharlie Shepherd <masterdriverz@gentoo.org>2006-12-17 14:10:20 +0000
committerCharlie Shepherd <masterdriverz@gentoo.org>2006-12-17 14:10:20 +0000
commit4ee17abfad2408a538f5c6bd94310d2564fc5397 (patch)
treedaec8113c456f1daa74c1f75b2972dd19fe99d21 /app-text/yudit
parentVersion bumping for bug #157489 (diff)
downloadgentoo-2-4ee17abfad2408a538f5c6bd94310d2564fc5397.tar.gz
gentoo-2-4ee17abfad2408a538f5c6bd94310d2564fc5397.tar.bz2
gentoo-2-4ee17abfad2408a538f5c6bd94310d2564fc5397.zip
Bump to version 2.8.1; bug 154064
(Portage version: 2.1.2_rc3-r1)
Diffstat (limited to 'app-text/yudit')
-rw-r--r--app-text/yudit/ChangeLog8
-rw-r--r--app-text/yudit/files/digest-yudit-2.8.13
-rw-r--r--app-text/yudit/yudit-2.8.1.ebuild35
3 files changed, 45 insertions, 1 deletions
diff --git a/app-text/yudit/ChangeLog b/app-text/yudit/ChangeLog
index e757d68f3cdb..f6e412e6d335 100644
--- a/app-text/yudit/ChangeLog
+++ b/app-text/yudit/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/yudit
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.19 2006/11/07 21:55:12 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.20 2006/12/17 14:10:20 masterdriverz Exp $
+
+*yudit-2.8.1 (17 Dec 2006)
+
+ 17 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org>
+ +yudit-2.8.1.ebuild:
+ Bump to version 2.8.1; bug 154064
07 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org>
yudit-2.8.1_beta7.ebuild:
diff --git a/app-text/yudit/files/digest-yudit-2.8.1 b/app-text/yudit/files/digest-yudit-2.8.1
new file mode 100644
index 000000000000..612b96b2c1ea
--- /dev/null
+++ b/app-text/yudit/files/digest-yudit-2.8.1
@@ -0,0 +1,3 @@
+MD5 0ea14db1c76a7b5364b6d5032c5539fa yudit-2.8.1.tar.gz 2531801
+RMD160 e03f751dcaca778d8c19083ffa2abbe11f152d0e yudit-2.8.1.tar.gz 2531801
+SHA256 f8781589aec8e1562d8a38fe0ca04d40a4af5270fe6df4a5d6c7670ab0c47746 yudit-2.8.1.tar.gz 2531801
diff --git a/app-text/yudit/yudit-2.8.1.ebuild b/app-text/yudit/yudit-2.8.1.ebuild
new file mode 100644
index 000000000000..3217b1cb09ee
--- /dev/null
+++ b/app-text/yudit/yudit-2.8.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.8.1.ebuild,v 1.1 2006/12/17 14:10:20 masterdriverz Exp $
+
+inherit eutils
+
+DESCRIPTION="free (Y)unicode text editor for all unices"
+SRC_URI="http://yudit.org/download/${P}.tar.gz"
+HOMEPAGE="http://www.yudit.org/"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~sparc ~x86"
+IUSE=""
+
+DEPEND="|| ( x11-libs/libX11 virtual/x11 )
+ >=sys-devel/gettext-0.10"
+
+src_unpack() {
+ unpack "${A}"
+ cd "${S}"
+ sed -i -e 's:bin/install-sh -c -s:bin/install-sh -c:' Makefile.conf.in || die 'sed failed'
+}
+
+src_compile() {
+ econf || die 'econf failed'
+ # Fails parallel make
+ emake -j1 || die 'emake failed'
+}
+
+src_install() {
+ emake DESTDIR=${D} install || die
+ doicon icons/SS_Yudit_XPM.xpm
+ make_desktop_entry ${PN} "Unicode Text Editor Yudit" SS_Yudit_XPM.xpm Utility
+}