diff options
author | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
---|---|---|
committer | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
commit | d150a5f3e462fa7fe194a805a4aa0076f4d03ab9 (patch) | |
tree | ce5e44d69c5f3175bfdbd1e3717b52c5dcca5638 /base/gawk | |
parent | f29d3519ce073ec30f99754d93304324f7f26d65 (diff) |
Add ports.
Diffstat (limited to 'base/gawk')
-rw-r--r-- | base/gawk/gawk-4.1.0-notermcap.patch.xz | bin | 0 -> 336 bytes | |||
-rwxr-xr-x | base/gawk/gawk.build | 89 |
2 files changed, 89 insertions, 0 deletions
diff --git a/base/gawk/gawk-4.1.0-notermcap.patch.xz b/base/gawk/gawk-4.1.0-notermcap.patch.xz Binary files differnew file mode 100644 index 0000000..6c8cf98 --- /dev/null +++ b/base/gawk/gawk-4.1.0-notermcap.patch.xz diff --git a/base/gawk/gawk.build b/base/gawk/gawk.build new file mode 100755 index 0000000..a07b3d7 --- /dev/null +++ b/base/gawk/gawk.build @@ -0,0 +1,89 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=gawk +VERSION=4.1.0 +BUILD=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}: gawk (pattern scanning and processing language) +${NAME}: +${NAME}: Gawk is the GNU Project's implementation of the AWK programming +${NAME}: language. It conforms to the definition of the language in the POSIX +${NAME}: 1003.2 Command Language And Utilities Standard. This version in turn +${NAME}: is based on the description in The AWK Programming Language, by Aho, +${NAME}: Kernighan, and Weinberger, with the additional features found in the +${NAME}: System V Release 4 version of UNIX awk. Gawk also provides more +${NAME}: recent Bell Labs awk extensions, and some GNU-specific extensions. +${NAME}: +${NAME}: Homepage: http://www.gnu.org/software/gawk +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 gawk gawkinet +EOF + +# Sources + +SRCNAME[0]=${NAME} +SRCVERS[0]=${VERSION} +SRCPACK[0]=http://ftp.gnu.org/gnu/${SRCNAME[0]}/${SRCNAME[0]}-${SRCVERS[0]}.tar.xz +SRCCOPY[0]="GPL3" + +build0() +{ +sed -i 's|$(libdir)/@PACKAGE@|$(libdir)/plugins/@PACKAGE@|g' Makefile.in +sed -i 's|${libdir}/gawk|${libdir}/plugins/gawk|g' extension/configure +CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \ +./configure \ + --build="${ARCH}-slackware-linux" \ + --disable-dependency-tracking \ + --disable-silent-rules \ + --disable-rpath \ + --prefix="${SYS_DIR[usr]}" \ + --mandir="${SYS_DIR[man]}" \ + --infodir="${SYS_DIR[info]}" \ + --sysconfdir="${SYS_DIR[etc]}" \ + --libdir="${SYS_DIR[lib]}" \ + --localstatedir="${SYS_DIR[var]}" \ + --libexecdir="${SYS_DIR[lib]}/exec" +make ${JOBS} V=1 +make install DESTDIR="${PKG}" +doc AUTHORS +changelog NEWS +( + cd ${PKG}${SYS_DIR[bin]} + ln -sf gawk-${SRCVERS[0]} awk + ln -sf gawk-${SRCVERS[0]} gawk +) +( + cd ${PKG}${SYS_DIR[man]}/man1 + echo ".so man1/gawk.1" > awk.1 +) +} |