diff options
author | 2012-01-21 06:39:05 +0000 | |
---|---|---|
committer | 2012-01-21 06:39:05 +0000 | |
commit | 819ceb95b4de5f895e42f7c4c92516d5e23726c8 (patch) | |
tree | f77d06cfb11a62156e608dadce60d9d60d82937d /app-text/sgrep | |
parent | Unmasking bump for net-libs/wt-3.2.0-r1 due to success reports and no open bugs. (diff) | |
download | gentoo-2-819ceb95b4de5f895e42f7c4c92516d5e23726c8.tar.gz gentoo-2-819ceb95b4de5f895e42f7c4c92516d5e23726c8.tar.bz2 gentoo-2-819ceb95b4de5f895e42f7c4c92516d5e23726c8.zip |
Version bump.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'app-text/sgrep')
-rw-r--r-- | app-text/sgrep/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/sgrep/sgrep-1.94a.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/app-text/sgrep/ChangeLog b/app-text/sgrep/ChangeLog index 5e4e7f68c5bb..a0f4065f5804 100644 --- a/app-text/sgrep/ChangeLog +++ b/app-text/sgrep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/sgrep -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sgrep/ChangeLog,v 1.10 2010/02/20 18:08:50 abcd Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/sgrep/ChangeLog,v 1.11 2012/01/21 06:39:05 radhermit Exp $ + +*sgrep-1.94a (21 Jan 2012) + + 21 Jan 2012; Tim Harder <radhermit@gentoo.org> +sgrep-1.94a.ebuild: + Version bump. 20 Feb 2010; Jonathan Callen <abcd@gentoo.org> sgrep-1.92a.ebuild: Transfer prefix keywords, bump EAPI diff --git a/app-text/sgrep/sgrep-1.94a.ebuild b/app-text/sgrep/sgrep-1.94a.ebuild new file mode 100644 index 000000000000..2cb81109b6a4 --- /dev/null +++ b/app-text/sgrep/sgrep-1.94a.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/sgrep/sgrep-1.94a.ebuild,v 1.1 2012/01/21 06:39:05 radhermit Exp $ + +EAPI=4 + +DESCRIPTION="Structured grep: tool for searching and indexing text, SGML,XML and HTML files and filtering text streams using structural criteria." +SRC_URI="ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/${P}.tar.gz" +HOMEPAGE="http://www.cs.helsinki.fi/u/jjaakkol/sgrep.html" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +src_prepare() { + sed -i -e "s:/usr/lib:/etc:g" sgrep.1 +} + +src_configure() { + econf --datadir="${EPREFIX}"/etc +} + +src_install() { + dobin sgrep + doman sgrep.1 + dodoc AUTHORS ChangeLog NEWS README sample.sgreprc + insinto /etc + newins sample.sgreprc sgreprc +} |