summaryrefslogtreecommitdiffstats
path: root/base/dhcpcd/Pkgfile
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:33:10 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:33:10 +0200
commit1b975b55bf2820be6e468754000ef6bc580baac8 (patch)
tree5ac649b173381c2a3f6790abd6275e6651694a53 /base/dhcpcd/Pkgfile
parent040a3fc2e987206a650a8a8660c6fab2cffe5de5 (diff)
downloadnutyx-pakxe-1b975b55bf2820be6e468754000ef6bc580baac8.tar.gz
nutyx-pakxe-1b975b55bf2820be6e468754000ef6bc580baac8.tar.bz2
nutyx-pakxe-1b975b55bf2820be6e468754000ef6bc580baac8.tar.xz
nutyx-pakxe-1b975b55bf2820be6e468754000ef6bc580baac8.zip
Ajout de dhcpcd#5.0.6-1
Diffstat (limited to 'base/dhcpcd/Pkgfile')
-rwxr-xr-xbase/dhcpcd/Pkgfile33
1 files changed, 33 insertions, 0 deletions
diff --git a/base/dhcpcd/Pkgfile b/base/dhcpcd/Pkgfile
new file mode 100755
index 000000000..aa7182c6d
--- /dev/null
+++ b/base/dhcpcd/Pkgfile
@@ -0,0 +1,33 @@
+# Description: Client dhcp pour obtenir une adresse dynamiquement
+# URL: http://roy.marples.name/projects/dhcpcd
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: more
+
+name=dhcpcd
+version=5.0.6
+release=1
+source=( http://roy.marples.name/downloads/$name/$name-$version.tar.bz2\
+ dhcpcd \
+ )
+
+build() {
+ source /etc/blfs-bootscripts
+ wget http://www.linuxfromscratch.org/blfs/downloads/svn/${scripts}-${scriptsversion}.tar.bz2
+ tar xvf $scripts-$scriptsversion.tar.bz2
+ cd $name-$version
+ export PREFIX=/usr
+ sed -i 's/${PREFIX}\/etc/\/etc/' Makefile
+ sed -i 's/\/db/\/lib\/dhcpcd/' Makefile
+ sed -i 's/\/libexec/\/lib\/dhcpcd/' Makefile
+ sed -i 's/\/libexec/\/lib\/dhcpcd/' dhcpcd-hooks/Makefile
+ sed -i 's/${PREFIX}\/sbin/\/sbin/' Makefile
+
+ make
+ make DESTDIR=$PKG install
+ mkdir -p $PKG/etc/sysconfig/network-devices/ifconfig.eth0
+ mv ../dhcpcd $PKG/etc/sysconfig/network-devices/ifconfig.eth0/
+ cd ../$scripts-$scriptsversion
+ make DESTDIR=$PKG install-service-dhcpcd
+ cd ../..
+}