diff options
author | 2012-03-14 03:42:29 +0000 | |
---|---|---|
committer | 2012-03-14 03:42:29 +0000 | |
commit | 4a125b24cce18381f548168dfb9c30abbedb122d (patch) | |
tree | b83ea503baa6cad60b212e9def164e8380bf3393 /app-text/yudit | |
parent | Version bump. Adds a manpage, stdin searching, performance improvements and m... (diff) | |
download | gentoo-2-4a125b24cce18381f548168dfb9c30abbedb122d.tar.gz gentoo-2-4a125b24cce18381f548168dfb9c30abbedb122d.tar.bz2 gentoo-2-4a125b24cce18381f548168dfb9c30abbedb122d.zip |
Bump
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'app-text/yudit')
-rw-r--r-- | app-text/yudit/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/yudit/yudit-2.8.1.ebuild | 35 | ||||
-rw-r--r-- | app-text/yudit/yudit-2.9.2.ebuild | 35 |
3 files changed, 43 insertions, 37 deletions
diff --git a/app-text/yudit/ChangeLog b/app-text/yudit/ChangeLog index 9e70272599a2..95b30589c047 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.24 2008/06/24 05:08:39 darkside Exp $ +# Copyright 2002-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.25 2012/03/14 03:42:29 patrick Exp $ + +*yudit-2.9.2 (14 Mar 2012) + + 14 Mar 2012; Patrick Lauer <patrick@gentoo.org> +yudit-2.9.2.ebuild, + -yudit-2.8.1.ebuild: + Bump *yudit-2.9.0 (24 Jun 2008) diff --git a/app-text/yudit/yudit-2.8.1.ebuild b/app-text/yudit/yudit-2.8.1.ebuild deleted file mode 100644 index b58d4cc68322..000000000000 --- a/app-text/yudit/yudit-2.8.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# 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.8.1.ebuild,v 1.3 2008/02/29 17:49:42 carlo 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 - >=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 Utility -} diff --git a/app-text/yudit/yudit-2.9.2.ebuild b/app-text/yudit/yudit-2.9.2.ebuild new file mode 100644 index 000000000000..7a77f60af19d --- /dev/null +++ b/app-text/yudit/yudit-2.9.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.9.2.ebuild,v 1.1 2012/03/14 03:42:29 patrick 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 +} |