summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-10-26 08:35:43 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-10-26 08:35:43 +0000
commit45aacc983985a5ae8e17538fc4e46e3dee24ea5f (patch)
treeabcbafd9409658ad3fe17a0e60b5c51b107f8957 /app-text/txt2man
parentImproved description. Marked 0.0.2 stable on x86. (diff)
downloadgentoo-2-45aacc983985a5ae8e17538fc4e46e3dee24ea5f.tar.gz
gentoo-2-45aacc983985a5ae8e17538fc4e46e3dee24ea5f.tar.bz2
gentoo-2-45aacc983985a5ae8e17538fc4e46e3dee24ea5f.zip
Version bump.
(Portage version: 2.1.2_pre3-r8)
Diffstat (limited to 'app-text/txt2man')
-rw-r--r--app-text/txt2man/ChangeLog7
-rw-r--r--app-text/txt2man/files/digest-txt2man-1.5.13
-rw-r--r--app-text/txt2man/txt2man-1.5.1.ebuild29
3 files changed, 38 insertions, 1 deletions
diff --git a/app-text/txt2man/ChangeLog b/app-text/txt2man/ChangeLog
index 79380f6487e2..561294112118 100644
--- a/app-text/txt2man/ChangeLog
+++ b/app-text/txt2man/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/txt2man
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/app-text/txt2man/ChangeLog,v 1.10 2006/10/26 08:35:43 flameeyes Exp $
+
+*txt2man-1.5.1 (26 Oct 2006)
+
+ 26 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> +txt2man-1.5.1.ebuild:
+ Version bump.
*txt2man-1.5 (16 Oct 2006)
diff --git a/app-text/txt2man/files/digest-txt2man-1.5.1 b/app-text/txt2man/files/digest-txt2man-1.5.1
new file mode 100644
index 000000000000..f7c6bbd95675
--- /dev/null
+++ b/app-text/txt2man/files/digest-txt2man-1.5.1
@@ -0,0 +1,3 @@
+MD5 d855307c178224c236d0e64762569cb0 txt2man-1.5.1.tar.gz 14250
+RMD160 ab62b5d82bf330f96e79b715f5e1a3beb65d1196 txt2man-1.5.1.tar.gz 14250
+SHA256 800828f45f72b49fce6484b09b3c407804cecc05b3c8f34b413f80ba02f24beb txt2man-1.5.1.tar.gz 14250
diff --git a/app-text/txt2man/txt2man-1.5.1.ebuild b/app-text/txt2man/txt2man-1.5.1.ebuild
new file mode 100644
index 000000000000..105f230319b1
--- /dev/null
+++ b/app-text/txt2man/txt2man-1.5.1.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.1.ebuild,v 1.1 2006/10/26 08:35:43 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
+}