source: freewrt/package/siproxd/Makefile@ d1833aa

freewrt_1_0 freewrt_2_0
Last change on this file since d1833aa was 65d016f, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

fix half of the init scripts not conforming to
our standard. thx very much ulmen!

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

  • Property mode set to 100644
File size: 1.9 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:= siproxd
10PKG_VERSION:= 0.5.12
11PKG_RELEASE:= 2
12PKG_MD5SUM:= 2fa02bd6f83070593bfc2d383ce614fa
13PKG_INIT:= 60
14
15PKG_SOURCE_URL:= @SF/siproxd
16PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,SIPROXD,siproxd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
21
22$(WRKBUILD)/.configured:
23 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
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 );
50 touch $@
51
52$(WRKBUILD)/.built:
53 rm -rf $(WRKINST)
54 mkdir -p $(WRKINST)
55 $(MAKE) -C $(WRKBUILD) \
56 DESTDIR="$(WRKINST)" \
57 all install
58 touch $@
59
60$(IPKG_SIPROXD):
61 install -d -m0755 $(IDIR_SIPROXD)/etc
62 $(CP) $(WRKINST)/etc/siproxd.conf.example $(IDIR_SIPROXD)/etc/siproxd.conf
63 $(CP) $(WRKINST)/etc/siproxd_passwd.cfg $(IDIR_SIPROXD)/etc/
64 install -d -m0755 $(IDIR_SIPROXD)/etc/init.d
65 install -m0755 files/siproxd.init \
66 $(IDIR_SIPROXD)/etc/init.d/S$(PKG_INIT)siproxd
67 install -d -m0755 $(IDIR_SIPROXD)/usr/sbin
68 $(CP) $(WRKINST)/usr/sbin/siproxd $(IDIR_SIPROXD)/usr/sbin/
69 $(RSTRIP) $(IDIR_SIPROXD)
70 $(IPKG_BUILD) $(IDIR_SIPROXD) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.