blob: 8dacc3d1ff3e7fc7f79077b6f48b90cb1ca8f14d (
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
43
44
45
46
47
48
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzip/libzip-0.10-r1.ebuild,v 1.8 2012/03/02 21:00:06 ranger Exp $
EAPI=3
MY_P=${P/_}
inherit autotools-utils
DESCRIPTION="Library for manipulating zip archives"
HOMEPAGE="http://www.nih.at/libzip/"
SRC_URI="http://www.nih.at/libzip/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE="static-libs"
DEPEND="sys-libs/zlib"
RDEPEND="${DEPEND}"
DOCS=( NEWS README THANKS AUTHORS )
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}/${PN}-0.10_rc1-fix_headers.patch"
"${FILESDIR}/${PN}-0.10-fix_pkgconfig.patch"
)
AUTOTOOLS_IN_SOURCE_BUILD=1
src_prepare() {
autotools-utils_src_prepare
# run due to fix_headers patch
AT_NOELIBTOOLIZE=yes eautoreconf
#elibtoolize # FreeBSD .so version
# fix test return state
sed -i \
-e 's:19/2:19/0:' \
regress/open_nonarchive.test || die
}
src_install() {
autotools-utils_src_install
remove_libtool_files all
}
|