diff options
author | 2003-09-15 17:46:26 +0000 | |
---|---|---|
committer | 2003-09-15 17:46:26 +0000 | |
commit | ac473605b2a5b4138218869a7f6140686c664e1c (patch) | |
tree | aeabad1544e1c315445e0d3361afa57a8e40b715 /sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild | |
parent | added filesystem related apps to sys-fs from sys-apps (diff) | |
download | gentoo-2-ac473605b2a5b4138218869a7f6140686c664e1c.tar.gz gentoo-2-ac473605b2a5b4138218869a7f6140686c664e1c.tar.bz2 gentoo-2-ac473605b2a5b4138218869a7f6140686c664e1c.zip |
added filesystem related apps to sys-fs from sys-apps
Diffstat (limited to 'sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild')
-rw-r--r-- | sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild b/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild new file mode 100644 index 000000000000..62d0928ad892 --- /dev/null +++ b/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild,v 1.1 2003/09/15 17:46:25 seemant Exp $ + +DESCRIPTION="HFS FS Access utils" +SRC_URI="ftp://ftp.mars.org/pub/hfs/${P}.tar.gz" +HOMEPAGE="http://www.mars.org/home/rob/proj/hfs/" +IUSE="tcltk" + +KEYWORDS="ppc ~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc + tcltk? ( dev-lang/tcl dev-lang/tk )" +RDEPEND="" + +MAKEOPTS='PREFIX=/usr MANDIR=/usr/share/man' + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/hfsutils-3.2.6-errno.patch +} + +src_compile() { + local myconf + use tcltk && myconf="--with-tcl --with-tk" + + econf ${myconf} || die + emake || die + cd ${S}/hfsck + emake || die + cd ${S} +} + +src_install() { + dodir /usr/bin + dodir /usr/lib + dodir /usr/share/man/man1 + cd ${S} + make \ + prefix=${D}/usr \ + MANDEST=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + cd ${S}/hfsck + install -m0755 hfsck ${D}/usr/bin/ + cd ${S} +} |