diff options
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/ideviceinstaller/ChangeLog | 8 | ||||
-rw-r--r-- | app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-pda/ideviceinstaller/ChangeLog b/app-pda/ideviceinstaller/ChangeLog index 54e312cdd7ee..4c38a8c59458 100644 --- a/app-pda/ideviceinstaller/ChangeLog +++ b/app-pda/ideviceinstaller/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-pda/ideviceinstaller # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/ideviceinstaller/ChangeLog,v 1.2 2012/05/03 20:20:59 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/ideviceinstaller/ChangeLog,v 1.3 2012/05/16 01:04:07 ssuominen Exp $ + +*ideviceinstaller-1.0.1 (16 May 2012) + + 16 May 2012; Samuli Suominen <ssuominen@gentoo.org> + +ideviceinstaller-1.0.1.ebuild: + Version bump. 03 May 2012; Jeff Horelick <jdhore@gentoo.org> ideviceinstaller-1.0.0.ebuild: dev-util/pkgconfig -> virtual/pkgconfig diff --git a/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild b/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild new file mode 100644 index 000000000000..31bbb7098c69 --- /dev/null +++ b/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/ideviceinstaller/ideviceinstaller-1.0.1.ebuild,v 1.1 2012/05/16 01:04:07 ssuominen Exp $ + +EAPI=4 + +DESCRIPTION="A tool to interact with the installation_proxy of an Apple's iDevice" +HOMEPAGE="http://www.libimobiledevice.org/" +SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=app-pda/libimobiledevice-1.1.4 + >=app-pda/libplist-1.8 + >=dev-libs/libzip-0.8" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="AUTHORS NEWS README" + +src_prepare() { + sed -i -e 's:-Werror -g::' configure || die +} |