aboutsummaryrefslogtreecommitdiff
path: root/development/gettext
diff options
context:
space:
mode:
Diffstat (limited to 'development/gettext')
-rw-r--r--development/gettext/gettext-0.18.2.1-pkglibdir.patch.xzbin0 -> 1444 bytes
-rwxr-xr-xdevelopment/gettext/gettext.build88
2 files changed, 88 insertions, 0 deletions
diff --git a/development/gettext/gettext-0.18.2.1-pkglibdir.patch.xz b/development/gettext/gettext-0.18.2.1-pkglibdir.patch.xz
new file mode 100644
index 0000000..43365e9
--- /dev/null
+++ b/development/gettext/gettext-0.18.2.1-pkglibdir.patch.xz
Binary files differ
diff --git a/development/gettext/gettext.build b/development/gettext/gettext.build
new file mode 100755
index 0000000..44725e8
--- /dev/null
+++ b/development/gettext/gettext.build
@@ -0,0 +1,88 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=gettext
+VERSION=0.18.2.1
+BUILD=1
+DEPENDS=('expat >= 2.1.0-1')
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: gettext (software localization utilities)
+${NAME}:
+${NAME}: Usually, programs are written and documented in English, and use
+${NAME}: English at execution time for interacting with users. This package
+${NAME}: offers a well integrated set of tools that provide a framework to
+${NAME}: produce multi-lingual messages.
+${NAME}:
+${NAME}: Homepage: http://www.gnu.org/software/gettext
+${NAME}:
+${NAME}:
+${NAME}:
+EOF
+
+cat >> ${PKG}/install/doinst.sh <<EOF
+#!/bin/sh
+
+install_info()
+{
+ for file in "\${*}"; do
+ if [ -x usr/bin/install-info ]; then
+ usr/bin/install-info --info-dir=usr/share/info usr/share/info/\${file}.info.xz 2> /dev/null
+ fi
+ done
+}
+
+# Install texinfo files
+
+install_info gettext autosprintf
+EOF
+
+# Sources
+
+SRCNAME[0]=${NAME}
+SRCVERS[0]=${VERSION}
+SRCPACK[0]=${URL[gnu]}/${SRCNAME[0]}/${SRCNAME[0]}-${SRCVERS[0]}.tar.gz
+SRCCOPY[0]="GPL3"
+
+build0()
+{
+CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \
+./configure \
+ --build="${ARCH}-slackware-linux" \
+ --disable-dependency-tracking \
+ --disable-silent-rules \
+ --disable-rpath \
+ --enable-static=no \
+ --enable-shared=yes \
+ --prefix="${SYS_DIR[usr]}" \
+ --mandir="${SYS_DIR[man]}" \
+ --infodir="${SYS_DIR[info]}" \
+ --docdir="${SYS_DIR[html]}/${SRCNAME[0]}" \
+ --sysconfdir="${SYS_DIR[etc]}" \
+ --libdir="${SYS_DIR[lib]}" \
+ --localstatedir="${SYS_DIR[var]}" \
+ --enable-threads=posix \
+ --with-included-glib \
+ --with-included-libcroco \
+ --with-included-libunistring \
+ --with-included-libxml
+make ${JOBS} V=1
+make install DESTDIR="${PKG}"
+doc AUTHORS THANKS
+changelog NEWS
+rm -rf ${PKG}${SYS_DIR[html]}
+chmod 0755 ${PKG}${SYS_DIR[lib]}/preloadable_libintl.so
+}