diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2005-07-12 08:06:51 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2005-07-12 08:06:51 +0000 |
commit | 936f8e78b3bdbc2b5389b25b7a15aecd49652dbb (patch) | |
tree | 2d99e531835721d8ccda0a23d83c890bd971d935 /app-text/rman | |
parent | Added ~sparc. (diff) | |
download | gentoo-2-936f8e78b3bdbc2b5389b25b7a15aecd49652dbb.tar.gz gentoo-2-936f8e78b3bdbc2b5389b25b7a15aecd49652dbb.tar.bz2 gentoo-2-936f8e78b3bdbc2b5389b25b7a15aecd49652dbb.zip |
Bump to a version that's only two years old. This appears unmaintained and I intend to leave it that way for now, so please kick me if I'm wrong.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-text/rman')
-rw-r--r-- | app-text/rman/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/rman/files/digest-rman-3.2 | 1 | ||||
-rw-r--r-- | app-text/rman/files/rman-3.2-gentoo.diff | 19 | ||||
-rw-r--r-- | app-text/rman/rman-3.2.ebuild | 31 |
4 files changed, 59 insertions, 1 deletions
diff --git a/app-text/rman/ChangeLog b/app-text/rman/ChangeLog index d8c190603dfa..99d46bc6e869 100644 --- a/app-text/rman/ChangeLog +++ b/app-text/rman/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/rman # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/rman/ChangeLog,v 1.13 2005/06/27 18:57:47 j4rg0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/rman/ChangeLog,v 1.14 2005/07/12 08:06:51 spyderous Exp $ + +*rman-3.2 (12 Jul 2005) + + 12 Jul 2005; Donnie Berkholz <spyderous@gentoo.org>; + +files/rman-3.2-gentoo.diff, +rman-3.2.ebuild: + Bump to a version that's only two years old. This appears unmaintained and I + intend to leave it that way for now, so please kick me if I'm wrong. 27 Jun 2005; Lina Pezzella <j4rg0n@gentoo.org> rman-3.1.ebuild: Marked ~ppc-macos on behalf of Fabian Groffen (fabian.groffen@cwi.nl) diff --git a/app-text/rman/files/digest-rman-3.2 b/app-text/rman/files/digest-rman-3.2 new file mode 100644 index 000000000000..0fcf88358963 --- /dev/null +++ b/app-text/rman/files/digest-rman-3.2 @@ -0,0 +1 @@ +MD5 6d1d67641c6d042595a96a62340d3cc6 rman-3.2.tar.gz 79397 diff --git a/app-text/rman/files/rman-3.2-gentoo.diff b/app-text/rman/files/rman-3.2-gentoo.diff new file mode 100644 index 000000000000..ece1e3807e66 --- /dev/null +++ b/app-text/rman/files/rman-3.2-gentoo.diff @@ -0,0 +1,19 @@ +diff -urN rman-3.2.orig/Makefile rman-3.2/Makefile +--- rman-3.2.orig/Makefile 2003-07-26 12:15:00.000000000 -0700 ++++ rman-3.2/Makefile 2005-07-12 01:01:37.000000000 -0700 +@@ -15,13 +15,8 @@ + # this must be a directory that's in your bin PATH. + # MANDIR holds the man page. + +-BINDIR = /opt/local/bin +-#BINDIR = /usr/local/bin +-#BINDIR = //C/bin +-MANDIR = /usr/local/man/man1 +-# popular alternative +-#BINDIR = /opt/local/bin +-#MANDIR = /opt/local/man/man1 ++BINDIR = /usr/bin ++MANDIR = /usr/share/man/man1 + + + ### if you have GNU gcc, use these definitions diff --git a/app-text/rman/rman-3.2.ebuild b/app-text/rman/rman-3.2.ebuild new file mode 100644 index 000000000000..904161691492 --- /dev/null +++ b/app-text/rman/rman-3.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/rman/rman-3.2.ebuild,v 1.1 2005/07/12 08:06:51 spyderous Exp $ + +inherit eutils + +DESCRIPTION="PolyGlotMan man page translator AKA RosettaMan" +HOMEPAGE="http://polyglotman.sourceforge.net/" +SRC_URI="mirror://sourceforge/polyglotman/${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~ppc ~ppc-macos ~sparc ~x86" +IUSE="" + +DEPEND="" + +src_unpack() { + unpack ${A} + cd ${WORKDIR} + epatch ${FILESDIR}/${PF}-gentoo.diff || die "patch failed" +} + +src_compile() { + emake || die "make failed" +} + +src_install() { + dobin ${PN} || die + doman ${PN}.1 +} |