| 1 | # $Id: Makefile 3213 2006-02-10 18:59:05Z mbm $
|
|---|
| 2 |
|
|---|
| 3 | include $(TOPDIR)/rules.mk
|
|---|
| 4 |
|
|---|
| 5 | PKG_NAME:=dhcp-forwarder
|
|---|
| 6 | PKG_VERSION:=0.7
|
|---|
| 7 | PKG_RELEASE:=4
|
|---|
| 8 | PKG_MD5SUM:=e7f876e615ebc3f96418f6477b4451e2
|
|---|
| 9 |
|
|---|
| 10 | PKG_SOURCE_URL:=http://savannah.nongnu.org/download/dhcp-fwd
|
|---|
| 11 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|---|
| 12 | PKG_CAT:=bzcat
|
|---|
| 13 |
|
|---|
| 14 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|---|
| 15 | PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|---|
| 16 |
|
|---|
| 17 | include $(TOPDIR)/package/rules.mk
|
|---|
| 18 |
|
|---|
| 19 | $(eval $(call PKG_template,DHCP_FORWARDER,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|---|
| 20 |
|
|---|
| 21 | $(PKG_BUILD_DIR)/.configured:
|
|---|
| 22 | (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
|---|
| 23 | $(TARGET_CONFIGURE_OPTS) \
|
|---|
| 24 | CFLAGS="$(TARGET_CFLAGS)" \
|
|---|
| 25 | ac_cv_func_malloc_0_nonnull="yes" \
|
|---|
| 26 | ./configure \
|
|---|
| 27 | --target=$(GNU_TARGET_NAME) \
|
|---|
| 28 | --host=$(GNU_TARGET_NAME) \
|
|---|
| 29 | --build=$(GNU_HOST_NAME) \
|
|---|
| 30 | --program-prefix="" \
|
|---|
| 31 | --program-suffix="" \
|
|---|
| 32 | --prefix=/usr \
|
|---|
| 33 | --disable-dietlibc \
|
|---|
| 34 | --exec-prefix=/usr \
|
|---|
| 35 | --bindir=/usr/bin \
|
|---|
| 36 | --datadir=/usr/share \
|
|---|
| 37 | --includedir=/usr/include \
|
|---|
| 38 | --infodir=/usr/share/info \
|
|---|
| 39 | --libdir=/usr/lib \
|
|---|
| 40 | --libexecdir=/usr/lib \
|
|---|
| 41 | --localstatedir=/var \
|
|---|
| 42 | --mandir=/usr/share/man \
|
|---|
| 43 | --sbindir=/usr/sbin \
|
|---|
| 44 | --sysconfdir=/etc \
|
|---|
| 45 | --enable-largefile \
|
|---|
| 46 | --disable-nls \
|
|---|
| 47 | )
|
|---|
| 48 | touch $@
|
|---|
| 49 |
|
|---|
| 50 | $(PKG_BUILD_DIR)/.built:
|
|---|
| 51 | rm -rf $(PKG_INSTALL_DIR)
|
|---|
| 52 | mkdir -p $(PKG_INSTALL_DIR)
|
|---|
| 53 | $(MAKE) -C $(PKG_BUILD_DIR) \
|
|---|
| 54 | cfg_filename="/etc/dhcp-fwd.conf" \
|
|---|
| 55 | DESTDIR="$(PKG_INSTALL_DIR)" \
|
|---|
| 56 | all install
|
|---|
| 57 | touch $@
|
|---|
| 58 |
|
|---|
| 59 | $(IPKG_DHCP_FORWARDER):
|
|---|
| 60 | install -m0755 -d $(IDIR_DHCP_FORWARDER)/etc
|
|---|
| 61 | install -m0644 $(PKG_BUILD_DIR)/contrib/dhcp-fwd.conf $(IDIR_DHCP_FORWARDER)/etc/
|
|---|
| 62 | install -m0755 -d $(IDIR_DHCP_FORWARDER)/etc/init.d
|
|---|
| 63 | install -m0755 ./files/dhcp-fwd.init $(IDIR_DHCP_FORWARDER)/etc/init.d/dhcp-fwd
|
|---|
| 64 | install -m0755 -d $(IDIR_DHCP_FORWARDER)/usr/bin
|
|---|
| 65 | $(CP) $(PKG_INSTALL_DIR)/usr/sbin/dhcp-fwd $(IDIR_DHCP_FORWARDER)/usr/bin/
|
|---|
| 66 | $(RSTRIP) $(IDIR_DHCP_FORWARDER)
|
|---|
| 67 | $(IPKG_BUILD) $(IDIR_DHCP_FORWARDER) $(PACKAGE_DIR)
|
|---|