summaryrefslogtreecommitdiffstats
path: root/dhcpcd
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-11 19:15:23 +0100
committerLukc <lukc@upyum.com>2010-12-11 19:15:35 +0100
commit6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch)
treeb5e6da6d95b9a1235d82032b509b80483a886ff5 /dhcpcd
downloadbase-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip
Engagement initial.
Diffstat (limited to 'dhcpcd')
-rw-r--r--dhcpcd/.footprint25
-rw-r--r--dhcpcd/.md5sum1
-rw-r--r--dhcpcd/Pkgfile18
-rw-r--r--dhcpcd/Pkgfile.old24
4 files changed, 68 insertions, 0 deletions
diff --git a/dhcpcd/.footprint b/dhcpcd/.footprint
new file mode 100644
index 0000000..41a6256
--- /dev/null
+++ b/dhcpcd/.footprint
@@ -0,0 +1,25 @@
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/dhcpcd/
+-rw-r--r-- root/root etc/dhcpcd/dhcpcd.conf
+drwxr-xr-x root/root lib/
+drwxr-xr-x root/root lib/dhcpcd/
+drwxr-xr-x root/root lib/dhcpcd/dhcpcd-hooks/
+-rw-r--r-- root/root lib/dhcpcd/dhcpcd-hooks/01-test
+-rw-r--r-- root/root lib/dhcpcd/dhcpcd-hooks/02-dump
+-rw-r--r-- root/root lib/dhcpcd/dhcpcd-hooks/10-mtu
+-rw-r--r-- root/root lib/dhcpcd/dhcpcd-hooks/20-resolv.conf
+-rw-r--r-- root/root lib/dhcpcd/dhcpcd-hooks/29-lookup-hostname
+-rw-r--r-- root/root lib/dhcpcd/dhcpcd-hooks/30-hostname
+-rwxr-xr-x root/root lib/dhcpcd/dhcpcd-run-hooks
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/dhcpcd
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man5/
+-rw-r--r-- root/root usr/man/man5/dhcpcd.conf.5.gz
+drwxr-xr-x root/root usr/man/man8/
+-rw-r--r-- root/root usr/man/man8/dhcpcd-run-hooks.8.gz
+-rw-r--r-- root/root usr/man/man8/dhcpcd.8.gz
+drwxr-xr-x root/root var/
+drwxr-xr-x root/root var/lib/
+drwxr-xr-x root/root var/lib/dhcpcd/
diff --git a/dhcpcd/.md5sum b/dhcpcd/.md5sum
new file mode 100644
index 0000000..dbced20
--- /dev/null
+++ b/dhcpcd/.md5sum
@@ -0,0 +1 @@
+aabe4a3c1f23c55f2c99a416c9085de9 dhcpcd-5.2.9.tar.bz2
diff --git a/dhcpcd/Pkgfile b/dhcpcd/Pkgfile
new file mode 100644
index 0000000..894b131
--- /dev/null
+++ b/dhcpcd/Pkgfile
@@ -0,0 +1,18 @@
+description="An RFC2131-compliant DHCP client daemon"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://roy.marples.name/dhcpcd"
+depends=()
+
+name=dhcpcd
+version=5.2.9
+release=1
+source=(http://roy.marples.name/downloads/dhcpcd/dhcpcd-5.2.9.tar.bz2)
+build ()
+{
+ cd $name-$version;
+ ./configure --prefix= --libexecdir=/lib/dhcpcd --dbdir=/var/lib/dhcpcd --mandir=/usr/man --sysconfdir=/etc/dhcpcd --os=linux --with-hooks=none;
+ make;
+ make DESTDIR=$PKG install;
+ chmod -R u+w $PKG
+}
diff --git a/dhcpcd/Pkgfile.old b/dhcpcd/Pkgfile.old
new file mode 100644
index 0000000..f14fcea
--- /dev/null
+++ b/dhcpcd/Pkgfile.old
@@ -0,0 +1,24 @@
+# Description: An RFC2131-compliant DHCP client daemon
+# URL: http://roy.marples.name/dhcpcd
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+
+name=dhcpcd
+version=5.2.9
+release=1
+source=(http://roy.marples.name/downloads/dhcpcd/$name-$version.tar.bz2)
+
+build () {
+ cd $name-$version
+
+ ./configure --prefix= \
+ --libexecdir=/lib/dhcpcd \
+ --dbdir=/var/lib/dhcpcd \
+ --mandir=/usr/man \
+ --sysconfdir=/etc/dhcpcd \
+ --os=linux \
+ --with-hooks=none
+
+ make
+ make DESTDIR=$PKG install
+ chmod -R u+w $PKG
+}