blob: 54e0681be6f549dfda6bf045a0a1757c546bd6b2 (
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
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/tkman/tkman-2.1-r1.ebuild,v 1.9 2004/04/08 22:59:09 vapier Exp $
inherit eutils
DESCRIPTION="TkMan man and info page browser"
HOMEPAGE="http://tkman.sourceforge.net/"
SRC_URI="http://tkman.sourceforge.net/${PN}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86 ppc sparc"
DEPEND=">=app-text/rman-3.0.9
>=dev-lang/tcl-8.3.3
>=dev-lang/tk-8.3.3"
src_unpack() {
unpack ${A}
cd ${WORKDIR}
epatch ${FILESDIR}/${PF}-gentoo.diff
# A workaround until app-text/rman-3.1 is stable
has_version '>=sys-apps/groff-1.18' \
has_version '<app-text/rman-3.1' \
&& sed -i -e "s:groff -te -Tlatin1:groff -P -c -te -Tlatin1:" ${S}/Makefile
}
src_compile() {
emake || die
}
src_install() {
dobin ${PN} || die
dobin re${PN}
}
|