mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
main/gettext: use stdlibc++ instead of uclibc++
This commit is contained in:
parent
6faedcdac2
commit
a6fd918095
@ -1,7 +1,7 @@
|
||||
# Maintainer: Carlo Landmeter <clandmeter at gmail.com>
|
||||
pkgname=gettext
|
||||
pkgver=0.17
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="GNU locale utilities"
|
||||
url="http://www.gnu.org/software/gettext/gettext.html"
|
||||
license='GPL'
|
||||
@ -14,24 +14,30 @@ source="ftp://ftp.mirror.nl/pub/mirror/gnu/gettext/gettext-0.17.tar.gz
|
||||
"
|
||||
subpackages="$pkgname-doc $pkgname-dev"
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
_builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
prepare() {
|
||||
cd "$_builddir"
|
||||
for i in ../*.patch; do
|
||||
msg "Applying $i..."
|
||||
patch -p1 < $i || return 1
|
||||
done
|
||||
}
|
||||
|
||||
export CXX=${CXX_UC:-g++-uc}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
# 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
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make -j1 DESTDIR="$pkgdir/" install
|
||||
}
|
||||
|
||||
md5sums="58a2bc6d39c0ba57823034d55d65d606 gettext-0.17.tar.gz
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user