source: freewrt/package/xinetd/Makefile@ 11aebd0

freewrt_1_0 freewrt_2_0
Last change on this file since 11aebd0 was c57fbc9, checked in by Thorsten Glaser <tg@…>, 19 years ago

nuke DISABLE_NLS, DISABLE_LARGEFILE, replace globally
with --disable-nls and --enable-largefile, because it
doesn't make sense otherwise and/or breaks.

Requested by wbx@ in Message-ID: <20060618220406.GL6291@…>
Done using find and ed(1)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@152 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.9 KB
Line 
1# $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=xinetd
6PKG_VERSION:=2.3.13
7PKG_RELEASE:=2
8PKG_MD5SUM:=4295b5fe12350f09b5892b363348ac8b
9
10PKG_SOURCE_URL:=http://www.xinetd.org/
11PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12PKG_CAT:=zcat
13
14PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
16
17include $(TOPDIR)/package/rules.mk
18
19$(eval $(call PKG_template,XINETD,xinetd,$(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 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
27 ./configure \
28 --target=$(GNU_TARGET_NAME) \
29 --host=$(GNU_TARGET_NAME) \
30 --build=$(GNU_HOST_NAME) \
31 --program-prefix="" \
32 --program-suffix="" \
33 --prefix=/usr \
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 --enable-shared \
48 --disable-static \
49 --without-libwrap \
50 --with-loadavg \
51 );
52 touch $@
53
54$(PKG_BUILD_DIR)/.built:
55 rm -rf $(PKG_INSTALL_DIR)
56 mkdir -p $(PKG_INSTALL_DIR)
57 $(MAKE) -C $(PKG_BUILD_DIR) \
58 DESTDIR="$(PKG_INSTALL_DIR)" \
59 build install
60 touch $@
61
62$(IPKG_XINETD):
63 install -d -m0755 $(IDIR_XINETD)/etc
64 install -m0644 ./files/xinetd.conf $(IDIR_XINETD)/etc/xinetd.conf
65 install -d -m0755 $(IDIR_XINETD)/etc/xinetd.d
66 install -d -m0755 $(IDIR_XINETD)/etc/init.d
67 install -m0755 ./files/xinetd.init $(IDIR_XINETD)/etc/init.d/xinetd
68 install -d -m0755 $(IDIR_XINETD)/usr/sbin
69 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/xinetd $(IDIR_XINETD)/usr/sbin/
70 $(RSTRIP) $(IDIR_XINETD)
71 $(IPKG_BUILD) $(IDIR_XINETD) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.