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
commitfa0183a68e36b319faa050ee191d51c03d7090bd (patch)
treed4445fcc83b40a322fcab836ba98ae989f54e2cf /app-text/txt2man
parentversion bump. (diff)
downloadhistorical-fa0183a68e36b319faa050ee191d51c03d7090bd.tar.gz
historical-fa0183a68e36b319faa050ee191d51c03d7090bd.tar.bz2
historical-fa0183a68e36b319faa050ee191d51c03d7090bd.zip
Adding txt2man.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'app-text/txt2man')
-rw-r--r--app-text/txt2man/ChangeLog10
-rw-r--r--app-text/txt2man/Manifest14
-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, 67 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..47a4904e526c
--- /dev/null
+++ b/app-text/txt2man/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 053a466876f28314975f4236c4299e2f txt2man-1.4.8.ebuild 635
+MD5 f1a65c84bfa8bcd0b8a1fa0dbb76c577 metadata.xml 365
+MD5 3ea7708b05d8152765153004b9c96f94 ChangeLog 350
+MD5 5ff264ac56ae570fa0194d37f171066d files/digest-txt2man-1.4.8 69
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.1 (GNU/Linux)
+
+iD8DBQFC4YRTj5H05b2HAEkRAoOqAKCKf2WZkkzssie4LzHj+VRHexRD3ACfVy9l
+1J5IXl6JbYTnxqWtNvFP9pw=
+=RNKR
+-----END PGP SIGNATURE-----
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
+}