summaryrefslogtreecommitdiffstats
path: root/main/gettext/APKBUILD
blob: b96a8a99cc4420131dce67c9c627d1d5191082ee (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
# Maintainer: Carlo Landmeter <clandmeter at gmail.com>
pkgname=gettext
pkgver=0.17
pkgrel=2
pkgdesc="GNU locale utilities"
url="http://www.gnu.org/software/gettext/gettext.html"
license='GPL'
depends=
makedepends="libiconv-dev expat-dev ncurses-dev bash uclibc++-dev libxml2-dev"
source="ftp://ftp.mirror.nl/pub/mirror/gnu/gettext/gettext-0.17.tar.gz
	gettext-0.15-expat-no-dlopen.patch
	gettext-0.17-gnuinfo.patch
	gettext-0.17-open-args.patch
	"
subpackages="$pkgname-doc $pkgname-dev"

build() {
	cd "$srcdir/$pkgname-$pkgver"
	for i in ../*.patch; do
		msg "Applying $i..."
		patch -p1 < $i || return 1
	done

	export CXX=${CXX_UC:-g++-uc}

	# http://bugs.gentoo.org/show_bug.cgi?id=81628
	export CPPFLAGS="$CPPFLAGS -I/usr/include/libxml2"

	./configure --prefix=/usr \
		--mandir=/usr/share/man \
		--disable-static
	unset MAKEFLAGS
	make || return 1
	make DESTDIR="$pkgdir/" install
}

md5sums="58a2bc6d39c0ba57823034d55d65d606  gettext-0.17.tar.gz
20dbf5cfc16f8726e7594fb49da5665c  gettext-0.15-expat-no-dlopen.patch
51ba4ca1008c76564c25c632a4ee8b3e  gettext-0.17-gnuinfo.patch
aa0b9cb60cd87298dbfc2662b98e8a0b  gettext-0.17-open-args.patch"