diff options
author | 2015-08-03 13:47:59 +0000 | |
---|---|---|
committer | 2015-08-03 13:47:59 +0000 | |
commit | 8fe8d0ed98c2ac800fe2a29323af166efd877dc7 (patch) | |
tree | c1bc51a69f8fe8c644dc02908e184038875f2bec /app-editors | |
parent | Version bump (diff) | |
download | gentoo-2-8fe8d0ed98c2ac800fe2a29323af166efd877dc7.tar.gz gentoo-2-8fe8d0ed98c2ac800fe2a29323af166efd877dc7.tar.bz2 gentoo-2-8fe8d0ed98c2ac800fe2a29323af166efd877dc7.zip |
Version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/yudit/ChangeLog | 9 | ||||
-rw-r--r-- | app-editors/yudit/yudit-2.9.6.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/app-editors/yudit/ChangeLog b/app-editors/yudit/ChangeLog index 99763202556d..99a85dd4286c 100644 --- a/app-editors/yudit/ChangeLog +++ b/app-editors/yudit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/yudit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/yudit/ChangeLog,v 1.1 2012/10/07 12:54:22 ulm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/yudit/ChangeLog,v 1.2 2015/08/03 13:47:59 polynomial-c Exp $ + +*yudit-2.9.6 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler <polynomial-c@gentoo.org> +yudit-2.9.6.ebuild: + Version bump. 03 Sep 2012; Michael Palimaka <kensington@gentoo.org> -yudit-2.8.1_beta7.ebuild: diff --git a/app-editors/yudit/yudit-2.9.6.ebuild b/app-editors/yudit/yudit-2.9.6.ebuild new file mode 100644 index 000000000000..320511478883 --- /dev/null +++ b/app-editors/yudit/yudit-2.9.6.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/yudit/yudit-2.9.6.ebuild,v 1.1 2015/08/03 13:47:59 polynomial-c Exp $ + +EAPI=5 + +DESCRIPTION="Free (Y)unicode text editor for all unices" +HOMEPAGE="http://www.yudit.org/" +SRC_URI="http://yudit.org/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-libs/libX11" +DEPEND="${RDEPEND} + >=sys-devel/gettext-0.10" + +src_prepare() { + #Don't strip binaries, let portage do that. + sed -i "/^INSTALL_PROGRAM/s: -s::" Makefile.conf.in || die "sed failed" +} + +src_install() { + emake DESTDIR="${D}" install + dodoc {BUGS,CHANGELOG,NEWS,TODO,XBUGS}.TXT +} |