blob: 2a047b7b473db476a3041aeb541f94bbc8f35db1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: jim nutt <jim@nuttz.org>
# $Header: /var/cvsroot/gentoo-x86/app-text/rman/rman-3.0.9.ebuild,v 1.2 2002/04/28 03:59:29 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="PolyGlotMan man page translator AKA RosettaMan"
SRC_URI="http://polyglotman.sourceforge.net/${PN}.tar.gz"
HOMEPAGE="http://polyglotman.sourceforge.net/"
DEPEND=""
src_unpack() {
unpack ${A}
cd ${WORKDIR}
patch -p0 <${FILESDIR}/${PF}-gentoo.diff || die
}
src_compile() {
emake CFLAGS="${CFLAGS} -finline-functions" || die
}
src_install () {
dobin ${PN}
doman ${PN}.1
}
|