diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-08 22:56:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-08 22:56:33 +0000 |
commit | 596b576430fcc73a6b68bbedb8231673f47cf255 (patch) | |
tree | b13907cbb0b1011208572a96a33b604a1c1feb3c /app-text/rman | |
parent | small fix to conf.d entry (Manifest recommit) (diff) | |
download | gentoo-2-596b576430fcc73a6b68bbedb8231673f47cf255.tar.gz gentoo-2-596b576430fcc73a6b68bbedb8231673f47cf255.tar.bz2 gentoo-2-596b576430fcc73a6b68bbedb8231673f47cf255.zip |
add inherit eutils
Diffstat (limited to 'app-text/rman')
-rw-r--r-- | app-text/rman/rman-3.1.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/app-text/rman/rman-3.1.ebuild b/app-text/rman/rman-3.1.ebuild index 8e58bead745c..e8e9c495c6cc 100644 --- a/app-text/rman/rman-3.1.ebuild +++ b/app-text/rman/rman-3.1.ebuild @@ -1,13 +1,16 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/rman/rman-3.1.ebuild,v 1.3 2004/03/12 08:49:17 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/rman/rman-3.1.ebuild,v 1.4 2004/04/08 22:56:33 vapier Exp $ + +inherit eutils DESCRIPTION="PolyGlotMan man page translator AKA RosettaMan" -SRC_URI="mirror://sourceforge/polyglotman/${P}.tar.gz" HOMEPAGE="http://polyglotman.sourceforge.net/" -KEYWORDS="x86 ppc sparc" -SLOT="0" +SRC_URI="mirror://sourceforge/polyglotman/${P}.tar.gz" + LICENSE="Artistic" +SLOT="0" +KEYWORDS="x86 ppc sparc" DEPEND="" @@ -21,7 +24,7 @@ src_compile() { emake CFLAGS="${CFLAGS} -finline-functions" || die "make failed" } -src_install () { - dobin ${PN} +src_install() { + dobin ${PN} || die doman ${PN}.1 } |