From 2725be805c7ea3de6274d21468891f5a8463674a Mon Sep 17 00:00:00 2001 From: risci_atom Date: Thu, 17 Feb 2011 01:06:21 +0000 Subject: [PATCH] Added dhcpcd to pkg feed git-svn-id: http://svn.librewrt.org/librewrt@116 d459f2a8-9e7c-4474-95e1-7f88c49cc8e2 --- packages/net/dhcpcd/Makefile | 40 +++++++++++++++++++ packages/net/dhcpcd/patches/001-run_dir.patch | 11 +++++ 2 files changed, 51 insertions(+) create mode 100644 packages/net/dhcpcd/Makefile create mode 100644 packages/net/dhcpcd/patches/001-run_dir.patch diff --git a/packages/net/dhcpcd/Makefile b/packages/net/dhcpcd/Makefile new file mode 100644 index 0000000..53f6aa0 --- /dev/null +++ b/packages/net/dhcpcd/Makefile @@ -0,0 +1,40 @@ +# +# Copyright (C) 2007-2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=dhcpcd +PKG_VERSION:=3.0.17 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=http://download.berlios.de/dhcpcd/ +PKG_MD5SUM:=e9100e53f64ca1f9fb0d392c3a623738 + +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/dhcpcd + SECTION:=net + CATEGORY:=Network + TITLE:=DHCP client for automatically configuring IPv4 networking + URL:=http://roy.marples.name/projects/dhcpcd +endef + +define Package/dhcpcd/description + Simple configuration: supports executions of a script when the + IP address changes. +endef + +define Package/dhcpcd/install + $(INSTALL_DIR) $(1)/sbin + $(CP) $(PKG_INSTALL_DIR)/sbin/* $(1)/sbin/ +endef + +$(eval $(call BuildPackage,dhcpcd)) + diff --git a/packages/net/dhcpcd/patches/001-run_dir.patch b/packages/net/dhcpcd/patches/001-run_dir.patch new file mode 100644 index 0000000..cbb26ff --- /dev/null +++ b/packages/net/dhcpcd/patches/001-run_dir.patch @@ -0,0 +1,11 @@ +--- dhcpcd-3.0.17/pathnames.h.orig 2007-05-31 15:28:04.000000000 -0700 ++++ dhcpcd-3.0.17/pathnames.h 2007-05-31 15:28:16.000000000 -0700 +@@ -48,7 +48,7 @@ + #define STATEDIR "/var" + #define PIDFILE STATEDIR "/run/" PACKAGE "-%s.pid" + +-#define CONFIGDIR STATEDIR "/lib/" PACKAGE ++#define CONFIGDIR STATEDIR "/run/" PACKAGE + #define INFOFILE CONFIGDIR "/" PACKAGE "-%s.info" + + #endif -- 2.35.1