blob: 04f553b1d9ef0c7cefb1ee96f168f10a5699ff73 (
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
|
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
pkgname=gettext
pkgver=0.19.5
pkgrel=0
pkgdesc="GNU locale utilities"
url="http://www.gnu.org/software/gettext/gettext.html"
arch="all"
license='GPL'
depends=
depends_dev="expat-dev ncurses-dev libxml2-dev"
makedepends="$depends_dev bash"
source="ftp://ftp.gnu.org/gnu/gettext/gettext-$pkgver.tar.xz
"
subpackages="$pkgname-doc $pkgname-dev libintl $pkgname-lang"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
cd "$_builddir"
for i in ../*.patch; do
[ -r "$i" ] || continue
msg "Applying $i..."
patch -p1 < $i || return 1
done
# fix eglibc-2.16+ build issue
sed -i -e '/gets is a/d' \
gettext-tools/gnulib-lib/stdio.in.h \
gettext-tools/libgettextpo/stdio.in.h \
gettext-runtime/gnulib-lib/stdio.in.h \
|| return 1
}
build() {
cd "$_builddir"
LIBS="-lrt" \
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-threads=posix \
--disable-java \
--disable-static \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir/" install
}
libintl() {
replaces="gettext"
mkdir -p "$subpkgdir"/usr/lib
rm -rf "$pkgdir"/usr/lib/charset.alias
rmdir -p "$pkgdir"/usr/lib 2>/dev/null
if [ "$ALPINE_LIBC" != "eglibc" ]; then
mv "$pkgdir"/usr/lib/libintl.so.* \
"$subpkgdir"/usr/lib || return 1
fi
return 0
}
md5sums="546a8458f50e146be12c215f83b9bac2 gettext-0.19.5.tar.xz"
sha256sums="3410a61c5c05d0392533c92133e135de828973fee27477a6d6dd3d3e36f2a2dd gettext-0.19.5.tar.xz"
sha512sums="4cf773443ea1cb7cb304bf788ce27282beb8f4e0a74bce11b7d2e1541863379c1896a683d9ce0bef62686674d5f37fe028c4d04fe139adf180e1509db59ac9c0 gettext-0.19.5.tar.xz"
|