source: freewrt/package/ipcad/Makefile@ 621d5d2

freewrt_2_0
Last change on this file since 621d5d2 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.8 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:= ipcad
10PKG_VERSION:= 3.7
11PKG_RELEASE:= 1
12PKG_MD5SUM:= 34c542c99593dfe9d5b408deffcfe70e
13
14PKG_SOURCE_URL:= @SF/ipcad
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,IPCAD,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.cache; \
23 touch cfglex.c cslex.c; \
24 $(TARGET_CONFIGURE_OPTS) \
25 CFLAGS="$(TARGET_CFLAGS)" \
26 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
27 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
28 ./configure \
29 --target=$(GNU_TARGET_NAME) \
30 --host=$(GNU_TARGET_NAME) \
31 --build=$(GNU_HOST_NAME) \
32 --program-prefix="" \
33 --program-suffix="" \
34 --prefix=/usr \
35 --exec-prefix=/usr \
36 --bindir=/usr/bin \
37 --datadir=/usr/share \
38 --includedir=/usr/include \
39 --infodir=/usr/share/info \
40 --libdir=/usr/lib \
41 --libexecdir=/usr/lib \
42 --localstatedir=/var \
43 --mandir=/usr/share/man \
44 --sbindir=/usr/sbin \
45 --sysconfdir=/etc \
46 --disable-nls \
47 --enable-shared \
48 --disable-static \
49 --disable-rpath \
50 --with-gnu-ld \
51 --with-psrc=pcap \
52 --with-pcap-include="$(STAGING_DIR)/usr/include" \
53 --with-pcap-libraries="$(STAGING_DIR)/usr/lib" \
54 );
55 touch $@
56
57$(WRKBUILD)/.built:
58 $(MAKE) -C $(WRKBUILD) \
59 DESTDIR=$(WRKINST) \
60 all install
61 touch $@
62
63$(IPKG_IPCAD):
64 install -d -m0755 $(IDIR_IPCAD)/etc
65 $(CP) $(WRKINST)/etc/ipcad.conf $(IDIR_IPCAD)/etc/
66 install -d -m0755 $(IDIR_IPCAD)/usr/bin
67 $(CP) $(WRKINST)/usr/bin/ipcad $(IDIR_IPCAD)/usr/bin/
68 $(RSTRIP) $(IDIR_IPCAD)
69 $(IPKG_BUILD) $(IDIR_IPCAD) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.