blob: b4d3c4b300b53ea57ca021d73d3ede35bf337352 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/libplist-1.3.ebuild,v 1.7 2011/04/25 18:38:44 arfrever Exp $
EAPI=3
inherit cmake-utils eutils multilib python
DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
HOMEPAGE="http://www.libimobiledevice.org/"
SRC_URI="http://cloud.github.com/downloads/JonathanBeck/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc64 x86"
IUSE=""
RESTRICT="test"
RDEPEND="dev-libs/glib:2
dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-lang/swig"
src_prepare() {
sed -e 's:-Werror::g' \
-i swig/CMakeLists.txt || die "sed failed"
}
src_configure() {
mycmakeargs="-DCMAKE_SKIP_RPATH=ON
-DCMAKE_INSTALL_LIBDIR=$(get_libdir)
-DPYTHON_VERSION=$(python_get_version) VERBOSE=1
"
cmake-utils_src_configure
}
pkg_postinst() {
python_mod_optimize plist
}
pkg_postrm() {
python_mod_cleanup plist
}
|