summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2005-07-22 23:41:56 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2005-07-22 23:41:56 +0000
commit28c5b6035d8774a001f35f7eba12141aca8a355b (patch)
tree82288fb3472fe957bccf1a52edb5911cf892aa7f /app-text/txt2man
parentversion bump. (diff)
downloadgentoo-2-28c5b6035d8774a001f35f7eba12141aca8a355b.tar.gz
gentoo-2-28c5b6035d8774a001f35f7eba12141aca8a355b.tar.bz2
gentoo-2-28c5b6035d8774a001f35f7eba12141aca8a355b.zip
Adding txt2man.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-text/txt2man')
-rw-r--r--app-text/txt2man/ChangeLog10
-rw-r--r--app-text/txt2man/Manifest2
-rw-r--r--app-text/txt2man/files/digest-txt2man-1.4.81
-rw-r--r--app-text/txt2man/metadata.xml12
-rw-r--r--app-text/txt2man/txt2man-1.4.8.ebuild30
5 files changed, 55 insertions, 0 deletions
diff --git a/app-text/txt2man/ChangeLog b/app-text/txt2man/ChangeLog
new file mode 100644
index 000000000000..1e746591a42d
--- /dev/null
+++ b/app-text/txt2man/ChangeLog
@@ -0,0 +1,10 @@
+# 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.1 2005/07/22 23:41:56 flameeyes Exp $
+
+*txt2man-1.4.8 (22 Jul 2005)
+
+ 22 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> +metadata.xml,
+ +txt2man-1.4.8.ebuild:
+ Adding txt2man.
+
diff --git a/app-text/txt2man/Manifest b/app-text/txt2man/Manifest
new file mode 100644
index 000000000000..c9287efc96ca
--- /dev/null
+++ b/app-text/txt2man/Manifest
@@ -0,0 +1,2 @@
+MD5 1da8a335fd51511b14ba76a56d50a8c5 txt2man-1.4.8.ebuild 518
+MD5 5ff264ac56ae570fa0194d37f171066d files/digest-txt2man-1.4.8 69
diff --git a/app-text/txt2man/files/digest-txt2man-1.4.8 b/app-text/txt2man/files/digest-txt2man-1.4.8
new file mode 100644
index 000000000000..b5c4ed06acaf
--- /dev/null
+++ b/app-text/txt2man/files/digest-txt2man-1.4.8
@@ -0,0 +1 @@
+MD5 2ee6d7cc38c42b98f4d8c1eb815bd888 txt2man_1.4.8.orig.tar.gz 12244
diff --git a/app-text/txt2man/metadata.xml b/app-text/txt2man/metadata.xml
new file mode 100644
index 000000000000..cd8fa6423b59
--- /dev/null
+++ b/app-text/txt2man/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>flameeyes@gentoo.org</email>
+<name>Diego Pettenò</name>
+</maintainer>
+<longdescription lang="en">
+Simple shell script that creates a manpage starting from a simple structured
+text file.
+</longdescription>
+</pkgmetadata>
diff --git a/app-text/txt2man/txt2man-1.4.8.ebuild b/app-text/txt2man/txt2man-1.4.8.ebuild
new file mode 100644
index 000000000000..093ffe7dd334
--- /dev/null
+++ b/app-text/txt2man/txt2man-1.4.8.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/txt2man/txt2man-1.4.8.ebuild,v 1.1 2005/07/22 23:41:56 flameeyes Exp $
+
+DESCRIPTION="A simple script to convert ASCII text to man page."
+HOMEPAGE="http://mvertes.free.fr/"
+SRC_URI="mirror://debian/pool/main/t/txt2man/${P/-/_}.orig.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="app-shells/bash
+ sys-apps/gawk"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+ cd ${S}
+ gmake txt2man.1
+}
+
+src_install() {
+ cd ${S}
+
+ dobin txt2man
+ doman txt2man.1
+
+ dodoc ChangeLog README
+}