diff options
Diffstat (limited to 'sys-fs/hfsplusutils/hfsplusutils-1.0.4.ebuild')
-rw-r--r-- | sys-fs/hfsplusutils/hfsplusutils-1.0.4.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sys-fs/hfsplusutils/hfsplusutils-1.0.4.ebuild b/sys-fs/hfsplusutils/hfsplusutils-1.0.4.ebuild new file mode 100644 index 000000000000..9c7dbce4903e --- /dev/null +++ b/sys-fs/hfsplusutils/hfsplusutils-1.0.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4.ebuild,v 1.1 2003/09/15 17:46:25 seemant Exp $ + +MY_P="hfsplus_${PV}" +DESCRIPTION="HFS+ Filesystem Access Utilities (PPC Only)" +SRC_URI="http://ftp.penguinppc.org/users/hasi/${MY_P}.src.tar.bz2" +HOMEPAGE="http://ftp.penguinppc.org/users/hasi/" + +KEYWORDS="ppc ~x86" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="sys-devel/autoconf + sys-devel/automake + sys-apps/bzip2" +RDEPEND="" + +S=${WORKDIR}/hfsplus-${PV} + +MAKEOPTS='PREFIX=/usr MANDIR=/usr/share/man' + +src_compile() { + # This does a autoconf, automake, etc. + emake -f Makefile.cvs all || die + + patch -p0 < ${FILESDIR}/hfsplusutils-1.0.4-glob.patch || die "Patch failed" + + econf || die + emake || die +} + +src_install() { + dodir /usr/bin + dodir /usr/lib + dodir /usr/share/man + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + newman doc/man/hfsp.man hfsp.1 +} |