Skip to content

Commit

Permalink
app-pda/libplist: fix for bug 567370 (configure fail on -lpython3.4)
Browse files Browse the repository at this point in the history
Added to latest two versions for broader testing, fixes above bug plus
some duplicates.  Fix stolen from Arch (alertly pointed out by veremit).

Reported-by: (user) <[email protected]>

Package-Manager: portage-2.2.26
  • Loading branch information
sarnold committed Dec 31, 2015
1 parent 7e415ff commit a13463b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion app-pda/libplist/libplist-1.11-r2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
inherit eutils python-r1
inherit autotools eutils python-r1

DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
HOMEPAGE="http://www.libimobiledevice.org/"
Expand All @@ -29,6 +29,11 @@ RESTRICT="test" # TODO: src_test() was dropped from 1.10 (cmake) -> 1.11 (autoto

BUILD_DIR="${S}_build"

src_prepare() {
sed -i -e 's/AC_PYTHON_DEVEL/AX_PYTHON_DEVEL/' "${S}"/m4/cython_python.m4
eautoreconf
}

src_configure() {
local ECONF_SOURCE=${S}
local myeconfargs=( $(use_enable static-libs static) )
Expand Down
7 changes: 6 additions & 1 deletion app-pda/libplist/libplist-1.12.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
inherit eutils python-r1
inherit autotools eutils python-r1

DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
HOMEPAGE="http://www.libimobiledevice.org/"
Expand All @@ -29,6 +29,11 @@ RESTRICT="test" # TODO: src_test() was dropped from 1.10 (cmake) -> 1.11 (autoto

BUILD_DIR="${S}_build"

src_prepare() {
sed -i -e 's/AC_PYTHON_DEVEL/AX_PYTHON_DEVEL/' "${S}"/m4/cython_python.m4
eautoreconf
}

src_configure() {
local ECONF_SOURCE=${S}
local myeconfargs=( $(use_enable static-libs static) )
Expand Down

0 comments on commit a13463b

Please sign in to comment.