source: freewrt/package/miau/Makefile@ 428f140

freewrt_1_0 freewrt_2_0
Last change on this file since 428f140 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: 2.0 KB
Line 
1# $Id: Makefile 3622 2006-04-12 00:34:26Z nico $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=miau
6PKG_VERSION:=0.6.0.2
7PKG_RELEASE:=1
8PKG_MD5SUM:=1b78d219a03655399c165eeb021cddd8
9
10PKG_SOURCE_URL:= @SF/miau
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,MIAU,miau,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(PKG_BUILD_DIR)/.configured:
22 (cd $(PKG_BUILD_DIR); rm -rf config.cache; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
27 ac_cv_func_malloc_0_nonnull=yes \
28 ac_cv_func_realloc_0_nonnull=yes \
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 --bindir=/usr/bin \
46 --sysconfdir=/etc \
47 --enable-automode \
48 --enable-releasenick \
49 --enable-uptime \
50 --enable-privlog \
51 --enable-onconnect \
52 --disable-nls \
53 --enable-largefile \
54 );
55 touch $@
56
57$(PKG_BUILD_DIR)/.built:
58 rm -rf $(PKG_INSTALL_DIR)
59 mkdir -p $(PKG_INSTALL_DIR)
60 $(MAKE) -C $(PKG_BUILD_DIR) \
61 CC=$(TARGET_CC) \
62 DESTDIR="$(PKG_INSTALL_DIR)" \
63 install
64 touch $@
65
66$(IPKG_MIAU):
67 install -d -m0755 $(IDIR_MIAU)/usr/bin
68 $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(IDIR_MIAU)/usr/bin/
69 install -d -m0755 $(IDIR_MIAU)/etc/init.d
70 install -d -m0755 $(IDIR_MIAU)/etc/default
71 install -d -m0755 $(IDIR_MIAU)/etc/miau
72 install -m0755 ./files/S50miau $(IDIR_MIAU)/etc/init.d/S50miau
73 install -m0644 ./files/miau $(IDIR_MIAU)/etc/default/miau
74 install -m0644 ./files/miaurc $(IDIR_MIAU)/etc/miau/miaurc
75 $(RSTRIP) $(IDIR_MIAU)
76 $(IPKG_BUILD) $(IDIR_MIAU) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.