2005-03-30 02:26:17 +03:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-05-20 00:14:18 +03:00
|
|
|
PKG_NAME:=dhcp-forwarder
|
|
|
|
PKG_VERSION:=0.7
|
|
|
|
PKG_RELEASE:=4
|
|
|
|
PKG_MD5SUM:=e7f876e615ebc3f96418f6477b4451e2
|
2005-03-30 02:26:17 +03:00
|
|
|
|
2005-05-20 00:14:18 +03:00
|
|
|
PKG_SOURCE_URL:=http://savannah.nongnu.org/download/dhcp-fwd
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_CAT:=bzcat
|
2005-04-19 00:54:20 +03:00
|
|
|
|
2005-05-20 00:14:18 +03:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2005-04-11 04:36:13 +03:00
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
2005-03-30 02:26:17 +03:00
|
|
|
|
2005-05-12 22:37:59 +03:00
|
|
|
include $(TOPDIR)/package/rules.mk
|
2005-04-19 00:54:20 +03:00
|
|
|
|
2005-05-12 22:37:59 +03:00
|
|
|
$(eval $(call PKG_template,DHCP_FORWARDER,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
2005-03-30 02:26:17 +03:00
|
|
|
|
2005-05-12 22:37:59 +03:00
|
|
|
$(PKG_BUILD_DIR)/.configured:
|
2005-04-19 00:54:20 +03:00
|
|
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
2005-04-11 04:36:13 +03: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 22:37:59 +03:00
|
|
|
touch $@
|
2005-04-11 04:36:13 +03:00
|
|
|
|
2005-05-12 22:37:59 +03:00
|
|
|
$(PKG_BUILD_DIR)/.built:
|
2005-05-20 00:14:18 +03:00
|
|
|
rm -rf $(PKG_INSTALL_DIR)
|
2005-04-11 04:36:13 +03:00
|
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2005-05-20 00:14:18 +03:00
|
|
|
cfg_filename="/etc/dhcp-fwd.conf" \
|
2005-04-19 00:54:20 +03:00
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
2005-05-20 00:14:18 +03:00
|
|
|
all install
|
|
|
|
touch $@
|
2005-04-11 04:36:13 +03:00
|
|
|
|
2005-05-12 22:37:59 +03:00
|
|
|
$(IPKG_DHCP_FORWARDER):
|
2005-04-19 00:54:20 +03:00
|
|
|
install -m0755 -d $(IDIR_DHCP_FORWARDER)/etc
|
|
|
|
install -m0644 $(PKG_BUILD_DIR)/contrib/dhcp-fwd.conf $(IDIR_DHCP_FORWARDER)/etc/
|
2005-05-15 16:04:57 +03:00
|
|
|
install -m0755 -d $(IDIR_DHCP_FORWARDER)/etc/init.d
|
|
|
|
install -m0755 ./files/dhcp-fwd.init $(IDIR_DHCP_FORWARDER)/etc/init.d/dhcp-fwd
|
2005-04-19 00:54:20 +03:00
|
|
|
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)
|