2005-03-29 23:26:17 +00:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME := dhcp-forwarder
|
|
|
|
PKG_VERSION := 0.7
|
|
|
|
PKG_RELEASE := 4
|
|
|
|
PKG_MD5SUM := e7f876e615ebc3f96418f6477b4451e2
|
|
|
|
|
2005-05-12 19:37:59 +00:00
|
|
|
PKG_SOURCE_URL := http://savannah.nongnu.org/download/dhcp-fwd
|
2005-04-11 01:36:13 +00:00
|
|
|
PKG_SOURCE := $(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_CAT := bzcat
|
2005-04-18 21:54:20 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2005-04-11 01:36:13 +00:00
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
2005-03-29 23:26:17 +00:00
|
|
|
|
2005-05-12 19:37:59 +00:00
|
|
|
include $(TOPDIR)/package/rules.mk
|
2005-04-18 21:54:20 +00:00
|
|
|
|
2005-05-12 19:37:59 +00:00
|
|
|
$(eval $(call PKG_template,DHCP_FORWARDER,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
2005-03-29 23:26:17 +00:00
|
|
|
|
2005-05-12 19:37:59 +00:00
|
|
|
$(PKG_BUILD_DIR)/.configured:
|
2005-04-18 21:54:20 +00:00
|
|
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
2005-04-11 01:36:13 +00:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
ac_cv_func_malloc_0_nonnull="yes" \
|
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--program-prefix="" \
|
|
|
|
--program-suffix="" \
|
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--datadir=/usr/share \
|
|
|
|
--includedir=/usr/include \
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
$(DISABLE_LARGEFILE) \
|
|
|
|
$(DISABLE_NLS) \
|
|
|
|
)
|
2005-05-12 19:37:59 +00:00
|
|
|
touch $@
|
2005-04-11 01:36:13 +00:00
|
|
|
|
2005-05-12 19:37:59 +00:00
|
|
|
$(PKG_BUILD_DIR)/.built:
|
2005-04-11 01:36:13 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2005-04-18 21:54:20 +00:00
|
|
|
cfg_filename="/etc/dhcp-fwd.conf"
|
2005-04-11 01:36:13 +00:00
|
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2005-04-18 21:54:20 +00:00
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
install
|
2005-05-12 19:37:59 +00:00
|
|
|
touch $(PKG_BUILD_DIR)/.built
|
2005-04-11 01:36:13 +00:00
|
|
|
|
2005-05-12 19:37:59 +00:00
|
|
|
$(IPKG_DHCP_FORWARDER):
|
2005-04-18 21:54:20 +00:00
|
|
|
install -m0755 -d $(IDIR_DHCP_FORWARDER)/etc/init.d
|
|
|
|
install -m0755 ./ipkg/$(PKG_NAME).init $(IDIR_DHCP_FORWARDER)/etc/init.d/dhcp-fwd
|
|
|
|
install -m0755 -d $(IDIR_DHCP_FORWARDER)/etc
|
|
|
|
install -m0644 $(PKG_BUILD_DIR)/contrib/dhcp-fwd.conf $(IDIR_DHCP_FORWARDER)/etc/
|
|
|
|
install -m0755 -d $(IDIR_DHCP_FORWARDER)/usr/bin
|
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/dhcp-fwd $(IDIR_DHCP_FORWARDER)/usr/bin/
|
|
|
|
$(RSTRIP) $(IDIR_DHCP_FORWARDER)
|
|
|
|
$(IPKG_BUILD) $(IDIR_DHCP_FORWARDER) $(PACKAGE_DIR)
|