diff options
author | Stephanie J. Lockwood-Childs <wormo@gentoo.org> | 2006-08-08 23:47:45 +0000 |
---|---|---|
committer | Stephanie J. Lockwood-Childs <wormo@gentoo.org> | 2006-08-08 23:47:45 +0000 |
commit | 4744eabca9da930b6c590ca7128f114e0ea04131 (patch) | |
tree | 3d6c7ddcb50758f629db2793de106accc8c5464d /sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild | |
parent | kflickr 0.5 stable on amd64 and x86, add kflickr 0.6 testing for amd64 and x86 (diff) | |
download | gentoo-2-4744eabca9da930b6c590ca7128f114e0ea04131.tar.gz gentoo-2-4744eabca9da930b6c590ca7128f114e0ea04131.tar.bz2 gentoo-2-4744eabca9da930b6c590ca7128f114e0ea04131.zip |
mac-fdisk and mac-pdisk got swapped in -r5, put them back to normal
(Bug #142873)
(Portage version: 2.1-r1)
Diffstat (limited to 'sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild')
-rw-r--r-- | sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild b/sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild new file mode 100644 index 000000000000..24f5218c6493 --- /dev/null +++ b/sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mac-fdisk/mac-fdisk-0.1-r6.ebuild,v 1.1 2006/08/08 23:47:45 wormo Exp $ + +inherit eutils + +DEBRV=13 +DESCRIPTION="Mac/PowerMac disk partitioning utility" +HOMEPAGE="ftp://ftp.mklinux.apple.com/pub/Other_Tools/" +SRC_URI="mirror://debian/pool/main/m/mac-fdisk/${PN}_${PV}.orig.tar.gz + mirror://debian/pool/main/m/mac-fdisk/${PN}_${PV}-${DEBRV}.diff.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="" + +src_unpack() { + unpack mac-fdisk_${PV}.orig.tar.gz + mv mac-fdisk-${PV}.orig ${P} + cd "${S}" + epatch "${DISTDIR}"/mac-fdisk_${PV}-${DEBRV}.diff.gz + + # XXX: this needs to be fixed to not have this 'use ppc64' + use ppc64 && epatch ${FILESDIR}/mac-fdisk-0.1-r3-ppc64.patch + + epatch "${FILESDIR}"/largerthan2gb.patch + epatch "${FILESDIR}"/${P}-headers.patch +} + +src_install() { + into / + newsbin pdisk mac-fdisk || die + newsbin fdisk pmac-fdisk || die + + into /usr + newman mac-fdisk.8.in mac-fdisk.8 + newman pmac-fdisk.8.in pmac-fdisk.8 + dodoc README HISTORY +} |