diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-05-24 08:48:01 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-05-24 08:48:01 +0000 |
commit | ccf646374ee5441c4aa9773a3f0f2ae1c0c2ce0d (patch) | |
tree | e56c567266870fd1f6be9ff3db9d4f289133006c /app-text/txt2man | |
parent | Added patch for gcc-4.3 (diff) | |
download | gentoo-2-ccf646374ee5441c4aa9773a3f0f2ae1c0c2ce0d.tar.gz gentoo-2-ccf646374ee5441c4aa9773a3f0f2ae1c0c2ce0d.tar.bz2 gentoo-2-ccf646374ee5441c4aa9773a3f0f2ae1c0c2ce0d.zip |
old
(Portage version: 2.1.5.2)
Diffstat (limited to 'app-text/txt2man')
-rw-r--r-- | app-text/txt2man/files/txt2man-1.4.8-debian.patch | 21 | ||||
-rw-r--r-- | app-text/txt2man/txt2man-1.4.8-r1.ebuild | 40 | ||||
-rw-r--r-- | app-text/txt2man/txt2man-1.5.ebuild | 29 |
3 files changed, 0 insertions, 90 deletions
diff --git a/app-text/txt2man/files/txt2man-1.4.8-debian.patch b/app-text/txt2man/files/txt2man-1.4.8-debian.patch deleted file mode 100644 index d6cad591276c..000000000000 --- a/app-text/txt2man/files/txt2man-1.4.8-debian.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- txt2man-1.4.8.orig/txt2man -+++ txt2man-1.4.8/txt2man -@@ -181,6 +181,7 @@ - { - sub(/\.\.\./, "\\.\\.\\.") # to avoid some side effects in regexp - sub(/^ +$/,"") # remove spaces in empty lines -+ sub(/-/,"\\-") # backslash-escape hyphens - } - /^[[:upper:][:space:]]+$/ { # Section header - if ((in_bd + 0) == 1) { ---- txt2man-1.4.8.orig/Makefile -+++ txt2man-1.4.8/Makefile -@@ -6,7 +6,7 @@ - cp -p txt2man.1 $(prefix)/man/man1 - - txt2man.1 txt2man.man: txt2man -- ./txt2man -h 2>&1 | ./txt2man -t txt2man >$@ -+ ./txt2man -h 2>&1 | ./txt2man -s 1 -t txt2man >$@ - - txt2man.ps: txt2man.man - groff -man txt2man.man > txt2man.ps diff --git a/app-text/txt2man/txt2man-1.4.8-r1.ebuild b/app-text/txt2man/txt2man-1.4.8-r1.ebuild deleted file mode 100644 index ab4acc3daad8..000000000000 --- a/app-text/txt2man/txt2man-1.4.8-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# 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-r1.ebuild,v 1.2 2005/08/25 03:18:37 agriffis Exp $ - -inherit eutils - -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="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -RDEPEND="app-shells/bash - sys-apps/gawk" -DEPEND="${RDEPEND}" - -src_unpack() { - unpack ${A} - cd ${S} - - # Escape hyphens and add section info to txt2man manpage - epatch ${FILESDIR}/${P}-debian.patch -} - -src_compile() { - cd ${S} - make txt2man.1 -} - -src_install() { - cd ${S} - - dobin txt2man - doman txt2man.1 - - dodoc ChangeLog README -} diff --git a/app-text/txt2man/txt2man-1.5.ebuild b/app-text/txt2man/txt2man-1.5.ebuild deleted file mode 100644 index 3dc176bed2d6..000000000000 --- a/app-text/txt2man/txt2man-1.5.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# 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 -} |