| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-pda/ifuse/ifuse-1.1.1.ebuild,v 1.2 2012/05/03 20:21:00 jdhore Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
inherit autotools eutils
|
| 7 |
|
| 8 |
DESCRIPTION="Mount Apple iPhone/iPod Touch file systems for backup purposes"
|
| 9 |
HOMEPAGE="http://www.libimobiledevice.org/"
|
| 10 |
SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
|
| 11 |
|
| 12 |
LICENSE="LGPL-2.1"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~amd64 ~x86"
|
| 15 |
IUSE=""
|
| 16 |
|
| 17 |
RDEPEND=">=app-pda/libimobiledevice-1.0.0
|
| 18 |
>=dev-libs/glib-2.14.1
|
| 19 |
>=sys-fs/fuse-2.7.0"
|
| 20 |
DEPEND="${RDEPEND}
|
| 21 |
virtual/pkgconfig"
|
| 22 |
|
| 23 |
src_prepare() {
|
| 24 |
epatch "${FILESDIR}"/${PN}-1.0.0-asneeded.patch
|
| 25 |
eautoreconf
|
| 26 |
}
|
| 27 |
|
| 28 |
pkg_postinst() {
|
| 29 |
ewarn "Only use this filesystem driver to create backups of your data."
|
| 30 |
ewarn "The music database is hashed, and attempting to add files will "
|
| 31 |
ewarn "cause the iPod/iPhone to consider your database unauthorised."
|
| 32 |
ewarn "It will respond by wiping all media files, requiring a restore "
|
| 33 |
ewarn "through iTunes. You have been warned."
|
| 34 |
}
|