From 28c5b6035d8774a001f35f7eba12141aca8a355b Mon Sep 17 00:00:00 2001 From: Diego Elio Pettenò Date: Fri, 22 Jul 2005 23:41:56 +0000 Subject: Adding txt2man. (Portage version: 2.0.51.22-r2) --- app-text/txt2man/ChangeLog | 10 ++++++++++ app-text/txt2man/Manifest | 2 ++ app-text/txt2man/files/digest-txt2man-1.4.8 | 1 + app-text/txt2man/metadata.xml | 12 ++++++++++++ app-text/txt2man/txt2man-1.4.8.ebuild | 30 +++++++++++++++++++++++++++++ 5 files changed, 55 insertions(+) create mode 100644 app-text/txt2man/ChangeLog create mode 100644 app-text/txt2man/Manifest create mode 100644 app-text/txt2man/files/digest-txt2man-1.4.8 create mode 100644 app-text/txt2man/metadata.xml create mode 100644 app-text/txt2man/txt2man-1.4.8.ebuild (limited to 'app-text/txt2man') 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ò +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 @@ + + + + +flameeyes@gentoo.org +Diego Pettenò + + +Simple shell script that creates a manpage starting from a simple structured +text file. + + 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 +} -- cgit v1.2.3-65-gdbad