| 1 |
flameeyes |
1.19 |
# Copyright 1999-2010 Gentoo Foundation
|
| 2 |
seemant |
1.1 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
flameeyes |
1.19 |
# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild,v 1.18 2009/09/23 20:50:43 patrick Exp $
|
| 4 |
flameeyes |
1.12 |
|
| 5 |
flameeyes |
1.19 |
inherit autotools eutils
|
| 6 |
seemant |
1.1 |
|
| 7 |
|
|
MY_P="hfsplus_${PV}"
|
| 8 |
vapier |
1.4 |
DESCRIPTION="HFS+ Filesystem Access Utilities (a PPC filesystem)"
|
| 9 |
hansmi |
1.10 |
HOMEPAGE="http://penguinppc.org/historical/hfsplus/"
|
| 10 |
|
|
SRC_URI="http://penguinppc.org/historical/hfsplus/${MY_P}.src.tar.bz2"
|
| 11 |
seemant |
1.1 |
|
| 12 |
|
|
LICENSE="GPL-2"
|
| 13 |
|
|
SLOT="0"
|
| 14 |
gentoofan23 |
1.17 |
KEYWORDS="ppc ppc64 x86"
|
| 15 |
vapier |
1.6 |
IUSE=""
|
| 16 |
seemant |
1.1 |
|
| 17 |
josejx |
1.11 |
DEPEND="app-arch/bzip2"
|
| 18 |
patrick |
1.18 |
RDEPEND=""
|
| 19 |
seemant |
1.1 |
|
| 20 |
|
|
S=${WORKDIR}/hfsplus-${PV}
|
| 21 |
|
|
|
| 22 |
|
|
src_unpack() {
|
| 23 |
|
|
unpack ${A}
|
| 24 |
wolf31o2 |
1.16 |
cd "${S}"
|
| 25 |
|
|
epatch "${FILESDIR}/${P}-glob.patch"
|
| 26 |
|
|
epatch "${FILESDIR}/${P}-errno.patch"
|
| 27 |
|
|
epatch "${FILESDIR}/${P}-gcc4.patch"
|
| 28 |
|
|
epatch "${FILESDIR}/${P}-string.patch"
|
| 29 |
josejx |
1.13 |
#let's avoid the Makefile.cvs since isn't working for us
|
| 30 |
flameeyes |
1.19 |
eautoreconf
|
| 31 |
seemant |
1.1 |
}
|
| 32 |
|
|
|
| 33 |
|
|
src_install() {
|
| 34 |
wolf31o2 |
1.16 |
make DESTDIR="${D}" install || die "make install failed"
|
| 35 |
seemant |
1.1 |
newman doc/man/hfsp.man hfsp.1
|
| 36 |
|
|
}
|