diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-16 21:39:28 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-16 21:39:28 +0000 |
commit | 2f8c356af942a7d86f20fa6cf9fb91da1725860a (patch) | |
tree | d91d4153e9de95e0415ffb03bfcc3524e2fac60d /app-text | |
parent | version bump thanks to Bret Towe <magnade@gmail.com> in bug 129513 (diff) | |
download | gentoo-2-2f8c356af942a7d86f20fa6cf9fb91da1725860a.tar.gz gentoo-2-2f8c356af942a7d86f20fa6cf9fb91da1725860a.tar.bz2 gentoo-2-2f8c356af942a7d86f20fa6cf9fb91da1725860a.zip |
Version bump
(Portage version: 2.1.2_pre3-r2)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/txt2man/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/txt2man/files/digest-txt2man-1.5 | 3 | ||||
-rw-r--r-- | app-text/txt2man/txt2man-1.5.ebuild | 29 |
3 files changed, 39 insertions, 2 deletions
diff --git a/app-text/txt2man/ChangeLog b/app-text/txt2man/ChangeLog index 42e64ef6ac26..79380f6487e2 100644 --- a/app-text/txt2man/ChangeLog +++ b/app-text/txt2man/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/txt2man -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/txt2man/ChangeLog,v 1.8 2005/08/25 03:19:54 agriffis Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/txt2man/ChangeLog,v 1.9 2006/10/16 21:39:28 flameeyes Exp $ + +*txt2man-1.5 (16 Oct 2006) + + 16 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> +txt2man-1.5.ebuild: + Version bump 25 Aug 2005; Aron Griffis <agriffis@gentoo.org> txt2man-1.4.8-r1.ebuild: add ~alpha ~ia64 diff --git a/app-text/txt2man/files/digest-txt2man-1.5 b/app-text/txt2man/files/digest-txt2man-1.5 new file mode 100644 index 000000000000..4534b28b5d9e --- /dev/null +++ b/app-text/txt2man/files/digest-txt2man-1.5 @@ -0,0 +1,3 @@ +MD5 1cc7920b720d74679ef79831135c303c txt2man-1.5.tar.gz 13715 +RMD160 073a41fe42c7a4e19f5cb820b7433d9b8bd43745 txt2man-1.5.tar.gz 13715 +SHA256 d59acc2d35dc719d32986ef9d44b727e0614a431bb90a55d82d39f2bac5c6603 txt2man-1.5.tar.gz 13715 diff --git a/app-text/txt2man/txt2man-1.5.ebuild b/app-text/txt2man/txt2man-1.5.ebuild new file mode 100644 index 000000000000..3dc176bed2d6 --- /dev/null +++ b/app-text/txt2man/txt2man-1.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/txt2man/txt2man-1.5.ebuild,v 1.1 2006/10/16 21:39:28 flameeyes Exp $ + +inherit eutils + +DESCRIPTION="A simple script to convert ASCII text to man page." +HOMEPAGE="http://mvertes.free.fr/" +SRC_URI="http://mvertes.free.fr/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="app-shells/bash + sys-apps/gawk" +DEPEND="${RDEPEND}" + +src_compile() { + PATH="${S}:$PATH" make txt2man.1 || die "make failed" +} + +src_install() { + dobin txt2man + doman txt2man.1 + + dodoc README +} |