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/dhcpcd/dhcpcd.build | |
parent | f29d3519ce073ec30f99754d93304324f7f26d65 (diff) |
Add ports.
Diffstat (limited to 'base/dhcpcd/dhcpcd.build')
-rwxr-xr-x | base/dhcpcd/dhcpcd.build | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/base/dhcpcd/dhcpcd.build b/base/dhcpcd/dhcpcd.build new file mode 100755 index 0000000..ead7eb6 --- /dev/null +++ b/base/dhcpcd/dhcpcd.build @@ -0,0 +1,84 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=dhcpcd +VERSION=5.6.8 +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}: dhcpcd (DHCP client daemon) +${NAME}: +${NAME}: The DHCP client program dhcpcd is used to connect to a network by +${NAME}: contacting a DHCP server. Dhcpcd gets an IP address and other +${NAME}: information from a corresponding DHCP server, configures the network +${NAME}: interface automatically, and tries to renew the lease time according +${NAME}: to RFC2131 or RFC1541 depending on the command line option. +${NAME}: +${NAME}: Homepage: http://roy.marples.name/projects/dhcpcd +${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... +} + +config etc/dhcpcd.conf.new +EOF + +# Sources + +SRCNAME[0]=${NAME} +SRCVERS[0]=${VERSION} +SRCPACK[0]=http://roy.marples.name/downloads/dhcpcd/${SRCNAME[0]}-${SRCVERS[0]}.tar.bz2 +SRCCOPY[0]="BSD2" + +build0() +{ +CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \ +./configure \ + --build="${ARCH}-slackware-linux" \ + --prefix="${SYS_DIR[usr]}" \ + --mandir="${SYS_DIR[man]}" \ + --sysconfdir="${SYS_DIR[etc]}" \ + --libdir="${SYS_DIR[lib]}" \ + --localstatedir="${SYS_DIR[var]}" \ + --libexecdir="${SYS_DIR[share]}/net/dhcpcd" \ + --dbdir="${SYS_DIR[var]}/lib/dhcpcd" \ + --rundir="${SYS_DIR[run]}/dhcpcd" +make ${JOBS} +make install DESTDIR="${PKG}" HOOKSCRIPTS="50-ntp.conf 50-yp.conf" +doc README +config ${PKG}${SYS_DIR[etc]}/dhcpcd.conf +#FIXME: compat +install.dir ${PKG}/sbin +( + cd ${PKG}/sbin + ln -sf ${SYS_DIR[sbin]}/dhcpcd +) +} |