diff options
Diffstat (limited to 'openwrt/package/dhcp')
-rw-r--r-- | openwrt/package/dhcp/Config.in | 7 | ||||
-rw-r--r-- | openwrt/package/dhcp/Makefile | 44 | ||||
-rw-r--r-- | openwrt/package/dhcp/ipkg/dhcp.control | 6 |
3 files changed, 57 insertions, 0 deletions
diff --git a/openwrt/package/dhcp/Config.in b/openwrt/package/dhcp/Config.in new file mode 100644 index 000000000..d1b053064 --- /dev/null +++ b/openwrt/package/dhcp/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_DHCP + tristate "dhcp" + default m if CONFIG_DEVEL + help + dhcp server + + http://www.isc.org diff --git a/openwrt/package/dhcp/Makefile b/openwrt/package/dhcp/Makefile new file mode 100644 index 000000000..70a72c5ca --- /dev/null +++ b/openwrt/package/dhcp/Makefile @@ -0,0 +1,44 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=dhcp +PKG_VERSION:=3.0.2 +PKG_RELEASE:=1 +PKG_MD5SUM:=04800a111521e7442749b2ce883f962b + +PKG_SOURCE_URL:=ftp://ftp.isc.org/isc/dhcp/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,DHCP,dhcp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared + (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + ./configure \ + ); + touch $@ + +$(PKG_BUILD_DIR)/.built: + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install + touch $@ + +$(IPKG_DHCP): + install -d -m0755 $(IDIR_DHCP)/usr/sbin + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/dhcpd $(IDIR_DHCP)/usr/sbin + $(RSTRIP) $(IDIR_DHCP) + $(IPKG_BUILD) $(IDIR_DHCP) $(PACKAGE_DIR) diff --git a/openwrt/package/dhcp/ipkg/dhcp.control b/openwrt/package/dhcp/ipkg/dhcp.control new file mode 100644 index 000000000..d6c110a27 --- /dev/null +++ b/openwrt/package/dhcp/ipkg/dhcp.control @@ -0,0 +1,6 @@ +Package: dhcp +Priority: optional +Section: net +Maintainer: OpenWrt Developers <bugs@openwrt.org> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/dhcp/ +Description: isc dhcp server |