summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2008-06-24 05:08:39 +0000
committerJeremy Olexa <darkside@gentoo.org>2008-06-24 05:08:39 +0000
commit200b3ef57f39192c7f449b18b8f89badca6821ba (patch)
tree519efa095e9bc4ad04fe74437461fab88eaad317 /app-text/yudit
parentwhitespace (diff)
downloadgentoo-2-200b3ef57f39192c7f449b18b8f89badca6821ba.tar.gz
gentoo-2-200b3ef57f39192c7f449b18b8f89badca6821ba.tar.bz2
gentoo-2-200b3ef57f39192c7f449b18b8f89badca6821ba.zip
Version bump with minor reworked ebuild from previous version (QA fixes). bug #214558
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-text/yudit')
-rw-r--r--app-text/yudit/ChangeLog8
-rw-r--r--app-text/yudit/yudit-2.9.0.ebuild36
2 files changed, 43 insertions, 1 deletions
diff --git a/app-text/yudit/ChangeLog b/app-text/yudit/ChangeLog
index 9495103e2d7d..9e70272599a2 100644
--- a/app-text/yudit/ChangeLog
+++ b/app-text/yudit/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/yudit
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.23 2008/02/29 17:49:42 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.24 2008/06/24 05:08:39 darkside Exp $
+
+*yudit-2.9.0 (24 Jun 2008)
+
+ 24 Jun 2008; Jeremy Olexa <darkside@gentoo.org> +yudit-2.9.0.ebuild:
+ Version bump with minor reworked ebuild from previous version (QA fixes).
+ bug #214558
29 Feb 2008; Carsten Lohrke <carlo@gentoo.org> yudit-2.8.1.ebuild:
Remove icon extension from desktop entry to match Icon Theme Specification.
diff --git a/app-text/yudit/yudit-2.9.0.ebuild b/app-text/yudit/yudit-2.9.0.ebuild
new file mode 100644
index 000000000000..76119a563fae
--- /dev/null
+++ b/app-text/yudit/yudit-2.9.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.9.0.ebuild,v 1.1 2008/06/24 05:08:39 darkside Exp $
+
+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
+ >=sys-devel/gettext-0.10"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ #Don't strip binaries, let portage do that.
+ sed -i "/^INSTALL_PROGRAM/s: -s::" Makefile.conf.in || die "sed failed"
+}
+
+src_compile() {
+ econf
+ #FIXME:
+ #-j1 because this app builds a tool called 'mytool' and we need to make
+ #sure that it is built before it needs to be used.
+ emake -j1 || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc *.TXT
+}
+