diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2009-12-14 23:20:45 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2009-12-14 23:20:45 +0000 |
commit | 346e275d90b842be1bff8ddc002fd03a95edeab3 (patch) | |
tree | b2a87351e608b103fb18b7300df3fa6f5fc8b51b /app-pda | |
parent | Add missing patch to x11-misc/xmobar. (diff) | |
download | gentoo-2-346e275d90b842be1bff8ddc002fd03a95edeab3.tar.gz gentoo-2-346e275d90b842be1bff8ddc002fd03a95edeab3.tar.bz2 gentoo-2-346e275d90b842be1bff8ddc002fd03a95edeab3.zip |
Version bump. With thanks to Tomas "scarabeus" Chvatal.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/libplist/ChangeLog | 7 | ||||
-rw-r--r-- | app-pda/libplist/libplist-1.1.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/app-pda/libplist/ChangeLog b/app-pda/libplist/ChangeLog index 9d70356c4d1d..9ba5b1b0c7e8 100644 --- a/app-pda/libplist/ChangeLog +++ b/app-pda/libplist/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-pda/libplist # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/ChangeLog,v 1.3 2009/07/18 23:37:26 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/ChangeLog,v 1.4 2009/12/14 23:20:45 chainsaw Exp $ + +*libplist-1.1 (14 Dec 2009) + + 14 Dec 2009; <chainsaw@gentoo.org> +libplist-1.1.ebuild: + Version bump. With thanks to Tomas "scarabeus" Chvatal. *libplist-0.13 (18 Jul 2009) diff --git a/app-pda/libplist/libplist-1.1.ebuild b/app-pda/libplist/libplist-1.1.ebuild new file mode 100644 index 000000000000..6855866f5978 --- /dev/null +++ b/app-pda/libplist/libplist-1.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/libplist-1.1.ebuild,v 1.1 2009/12/14 23:20:45 chainsaw Exp $ + +EAPI=2 +inherit cmake-utils eutils multilib python + +DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)" +HOMEPAGE="http://matt.colyer.name/projects/iphone-linux/index.php?title=Main_Page" +SRC_URI="http://cloud.github.com/downloads/JonathanBeck/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +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() { + python_version + mycmakeargs="-DCMAKE_SKIP_RPATH=ON + -DCMAKE_INSTALL_LIBDIR=$(get_libdir) + -DPYTHON_VERSION=${PYVER} VERBOSE=1 + " + cmake-utils_src_configure +} + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} +} + +pkg_postrm() { + python_mod_cleanup +} |