aboutsummaryrefslogtreecommitdiffstats
path: root/main/libxml2/APKBUILD
blob: 01959c31967f05ded4ce8643addf960c84a45276 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Contributor: Carlo Landmeter <clandmeter at gmail>
# Maintainer: Carlo Landmeter <clandmeter at gmail>
pkgname=libxml2
pkgver=2.7.8
pkgrel=5
pkgdesc="XML parsing library, version 2"
url="http://www.xmlsoft.org/"
arch="all"
license="MIT"
depends=
depends_dev="zlib-dev python-dev"
makedepends="zlib-dev python-dev"
subpackages="$pkgname-doc $pkgname-dev py-$pkgname:py $pkgname-utils"
source="ftp://ftp.xmlsoft.org/${pkgname}/${pkgname}-${pkgver}.tar.gz
	largefile64.patch
	libxml2-2.7.8-CVE-2011-1944.patch
	cve-2012-0841.patch

	libxml2-2.7.8-xpath-memory.patch
	libxml2-2.7.8-xpath-freeing.patch
	libxml2-2.7.8-xpath-freeing2.patch
	libxml2-2.7.8-hardening-xpath.patch
	libxml2-2.7.8-error-xpath.patch
	libxml2-2.7.8-allocation-error-copying-entities.patch
	libxml2-2.7.8-entities-local-buffers-size.patch
	libxml2-2.7.8-entities-local-buffers-size2.patch
	libxml2-2.7.8-parser-local-buffers-size.patch
	CVE-2012-5134.patch
	"

options="!strip"

_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
	cd "$_builddir"
	for _i in "$srcdir"/*.patch; do
		patch -p1 -i "$_i"
	done
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info 
	make
}

package() {
	cd "$_builddir"
	make -j1 DESTDIR="$pkgdir" install
	install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}

py() {
	cd "$_builddir"
	pkgdesc="$pkgname python bindings"
	install -d "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
}

utils() {
	pkgdesc="XML utilities"
	replaces="libxml2"
	mkdir -p "$subpkgdir"/usr
	mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}

md5sums="8127a65e8c3b08856093099b52599c86  libxml2-2.7.8.tar.gz
5ad4915665608ebfa5b89f7908467a72  largefile64.patch
49cba5245dfa6f2ec710324df947fff9  libxml2-2.7.8-CVE-2011-1944.patch
045c7f25e46de3127a6061e273de3f7b  cve-2012-0841.patch
bec456883fa9c91b0e7d2ad91283eeb1  libxml2-2.7.8-xpath-memory.patch
8e3374d282fc12c7e40a3c5fb4b62978  libxml2-2.7.8-xpath-freeing.patch
d1eff47d3bc99b38a09744345eaf3434  libxml2-2.7.8-xpath-freeing2.patch
9027cbb76b112629cb5fa84ffcfc44bd  libxml2-2.7.8-hardening-xpath.patch
8bf2bd2422b9aab015fb7a8ca993eef3  libxml2-2.7.8-error-xpath.patch
de02f584b928d3e25babc5c90aa800be  libxml2-2.7.8-allocation-error-copying-entities.patch
c8c789a4fbdae599a47ecbfa32b889d7  libxml2-2.7.8-entities-local-buffers-size.patch
cba1201e77dc0f3e337d9ff146a2666e  libxml2-2.7.8-entities-local-buffers-size2.patch
6c5c7a125dddb616feb1b2f4254bf467  libxml2-2.7.8-parser-local-buffers-size.patch
fe428448d74481d7547bc173cb40ef26  CVE-2012-5134.patch"