# Maintainer:

pkgname=gettext
pkgver=0.22.4
pkgrel=1.1
pkgdesc="GNU internationalization library"
url="https://www.gnu.org/software/gettext/"
license=('GPL-2.0-only' 'LGPL-2.0-only' 'GFDL-1.2-only' 'GPL-2.0-or-later')
ncxfab_makedepends=(base-devel gettext emacs git sh)
ncxfat_makedepends=(
             binutils
             gcc-libs
             acl
             libunistring
             libxml2)
ncxfah_optdepends=('git: for autopoint infrastructure updates')
options=(!docs)
source=(https://ftp.gnu.org/pub/gnu/gettext/gettext-$pkgver.tar.gz # {,.sig}
        gettext-0.22-disable-libtextstyle.patch)
sha256sums=('c1e0bb2a4427a9024390c662cd532d664c4b36b8ff444ed5e54b115fdb7a1aea'
            #'SKIP'
            'a28a27192f336f0b0908bdbf840d3b19d7b587c4ac52cad635cb43e95eb3c78d')
validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871'  # Daiki Ueno
              '68D94D8AAEEAD48AE7DC5B904F494A942E4616C2'
              '9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D') # Bruno Haible (Open Source Development)

prepare() {
  cd gettext-$pkgver

  # Do not build libtextstyle, as it depends on libcroco
  # which is now unmaintained and has known security bugs.
  # patch from Fedora	
   patch -p1 -i $srcdir/gettext-0.22-disable-libtextstyle.patch
}

build() {
  cd gettext-$pkgver
  LTOFLAGS=""
  autoreconf --force

  ./configure \
    --prefix="$MPKG_USRPATH" \
    --host="$MPKG_TARGETMACHINE" \
    --enable-csharp \
    --enable-nls \
    --with-xz \
    --without-included-gettext

  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
      -i gettext-{tools,runtime,runtime/libasprintf}/libtool

  make
}

check() {
  cd gettext-$pkgver
  make check
}

package() {
  ncxfat_depends=(gcc-libs
                acl
                libunistring
                libxml2)
  ncxfah_depends=(sh)
  cd gettext-$pkgver
  make DESTDIR="$pkgdir" install
  rm "${pkgdir}"$MPKG_USRPATH/share/info/dir
}
