source: freewrt/package/arpd/Makefile@ eb945dd

freewrt_2_0
Last change on this file since eb945dd was 9f572e3, checked in by Dirk Nehring <dnehring@…>, 19 years ago

drop --enable-largefile from makefiles. 2GB should be enough in most cases

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@975 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.7 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= arpd
10PKG_VERSION:= 0.2
11PKG_RELEASE:= 1
12PKG_MD5SUM:= e2911fa9de1b92ef50deda1489ae944d
13
14PKG_SOURCE_URL:= http://niels.xtdnet.nl/honeyd
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17WRKSRC= ${WRKDIR}/$(PKG_NAME)
18
19include $(TOPDIR)/mk/package.mk
20
21$(eval $(call PKG_template,ARPD,arpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
22
23$(WRKBUILD)/.configured:
24 (cd $(WRKBUILD); rm -rf config.cache; \
25 $(TARGET_CONFIGURE_OPTS) \
26 CFLAGS="$(TARGET_CFLAGS)" \
27 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
28 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
29 ./configure \
30 --target=$(GNU_TARGET_NAME) \
31 --host=$(GNU_TARGET_NAME) \
32 --build=$(GNU_HOST_NAME) \
33 --program-prefix="" \
34 --program-suffix="" \
35 --prefix=/usr \
36 --exec-prefix=/usr \
37 --bindir=/usr/bin \
38 --datadir=/usr/share \
39 --includedir=/usr/include \
40 --infodir=/usr/share/info \
41 --libdir=/usr/lib \
42 --libexecdir=/usr/lib \
43 --localstatedir=/var \
44 --mandir=/usr/share/man \
45 --sbindir=/usr/sbin \
46 --sysconfdir=/etc \
47 --disable-nls \
48 --enable-shared \
49 --disable-static \
50 --with-libdnet=$(STAGING_DIR)/usr \
51 --with-libevent=$(STAGING_DIR)/usr \
52 --with-libpcap=$(STAGING_DIR)/usr \
53 );
54 touch $@
55
56$(WRKBUILD)/.built:
57 $(MAKE) -C $(WRKBUILD) \
58 CCOPT="$(TARGET_CFLAGS)" \
59 INCLS="-I. -I$(STAGING_DIR)/usr/include" \
60 LIBS="-L$(STAGING_DIR)/usr/lib -lpcap -ldnet -levent"
61 touch $@
62
63$(IPKG_ARPD):
64 $(INSTALL_DIR) $(IDIR_ARPD)/usr/sbin
65 $(INSTALL_BIN) $(WRKBUILD)/arpd $(IDIR_ARPD)/usr/sbin/
66 $(RSTRIP) $(IDIR_ARPD)
67 $(IPKG_BUILD) $(IDIR_ARPD) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.