diff options
Diffstat (limited to 'base/nano/nano.build')
-rwxr-xr-x | base/nano/nano.build | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/base/nano/nano.build b/base/nano/nano.build new file mode 100755 index 0000000..0f17409 --- /dev/null +++ b/base/nano/nano.build @@ -0,0 +1,99 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=nano +MAJOR=2.2 +VERSION=${MAJOR}.6 +BUILD=2 + +# 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}: GNU nano (text editor) +${NAME}: +${NAME}: GNU nano is a drop-in replacement for pico (the Pine MUA's editor). +${NAME}: The difference is that nano has more features such as syntax +${NAME}: highlighting and it is distributed under the terms of the GNU General +${NAME}: Public License. +${NAME}: +${NAME}: Homepage: http://www.nano-editor.org +${NAME}: +${NAME}: +${NAME}: +EOF + +cat >> ${PKG}/install/doinst.sh <<EOF +#!/bin/sh + +config() { + NEW="\$1" + OLD="\$(dirname \$NEW)/\$(basename \$NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r \$OLD ]; then + mv \$NEW \$OLD + elif [ "\$(cat \$OLD | md5sum)" = "\$(cat \$NEW | md5sum)" ]; then + # toss the redundant copy + rm \$NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +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_info nano + +config etc/nanorc.new +EOF + +# Sources + +SRCNAME[0]=${NAME} +SRCVERS[0]=${VERSION} +SRCPACK[0]=http://www.nano-editor.org/dist/v${MAJOR}/${SRCNAME[0]}-${SRCVERS[0]}.tar.gz +SRCCOPY[0]="GPL3 FDL12" + +build0() +{ +CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \ +./configure \ + --build="${ARCH}-slackware-linux" \ + --disable-dependency-tracking \ + --disable-rpath \ + --prefix="${SYS_DIR[usr]}" \ + --mandir="${SYS_DIR[man]}" \ + --infodir="${SYS_DIR[info]}" \ + --sysconfdir="${SYS_DIR[etc]}" \ + --datadir="${SYS_DIR[share]}/application-data" \ + --localedir="${SYS_DIR[share]}/locale" \ + --libdir="${SYS_DIR[lib]}" \ + --localstatedir="${SYS_DIR[var]}" \ + --disable-wrapping-as-root \ + --enable-utf8 +make ${JOBS} +make install DESTDIR="${PKG}" +doc AUTHORS THANKS UPGRADE +changelog NEWS +install.dir ${PKG}${SYS_DIR[etc]} +install.doc doc/nanorc.sample ${PKG}${SYS_DIR[etc]}/nanorc.new +install.dir ${PKG}${SYS_DIR[html]}/${NAME} +install.doc doc/faq.html ${PKG}${SYS_DIR[html]}/${NAME} +rm -rf ${PKG}${SYS_DIR[share]}/application-data/nano/man-html +} |