blob: 09ad39a5a82e8db53511bf57b38fc65cf7eb03fe (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/hfsutils-3.2.6-r1.ebuild,v 1.4 2004/06/30 17:10:12 vapier Exp $
DESCRIPTION="HFS FS Access utils"
HOMEPAGE="http://www.mars.org/home/rob/proj/hfs/"
SRC_URI="ftp://ftp.mars.org/pub/hfs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc"
IUSE="tcltk"
DEPEND="virtual/libc
tcltk? ( dev-lang/tcl dev-lang/tk )"
RDEPEND=""
src_compile() {
local myconf
use tcltk && myconf="--with-tcl --with-tk"
econf ${myconf} || die
emake PREFIX=/usr MANDIR=/usr/share/man || die
}
src_install() {
dodir /usr/bin
dodir /usr/lib
dodir /usr/share/man/man1
make \
prefix=${D}/usr \
MANDEST=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
}
|