| 1 | # $Id: Makefile 3798 2006-05-18 23:53:14Z nico $
|
|---|
| 2 |
|
|---|
| 3 | include $(TOPDIR)/rules.mk
|
|---|
| 4 |
|
|---|
| 5 | PKG_NAME:=siproxd
|
|---|
| 6 | PKG_VERSION:=0.5.12
|
|---|
| 7 | PKG_RELEASE:=1
|
|---|
| 8 | PKG_MD5SUM:=2fa02bd6f83070593bfc2d383ce614fa
|
|---|
| 9 |
|
|---|
| 10 | PKG_SOURCE_URL:=@SF/siproxd
|
|---|
| 11 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|---|
| 12 | PKG_CAT:=zcat
|
|---|
| 13 |
|
|---|
| 14 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|---|
| 15 | PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|---|
| 16 |
|
|---|
| 17 | include $(TOPDIR)/package/rules.mk
|
|---|
| 18 |
|
|---|
| 19 | $(eval $(call PKG_template,SIPROXD,siproxd,$(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 -I$(STAGING_DIR)/include" \
|
|---|
| 26 | LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/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 | );
|
|---|
| 50 | touch $@
|
|---|
| 51 |
|
|---|
| 52 | $(PKG_BUILD_DIR)/.built:
|
|---|
| 53 | rm -rf $(PKG_INSTALL_DIR)
|
|---|
| 54 | mkdir -p $(PKG_INSTALL_DIR)
|
|---|
| 55 | $(MAKE) -C $(PKG_BUILD_DIR) \
|
|---|
| 56 | DESTDIR="$(PKG_INSTALL_DIR)" \
|
|---|
| 57 | all install
|
|---|
| 58 | touch $@
|
|---|
| 59 |
|
|---|
| 60 | $(IPKG_SIPROXD):
|
|---|
| 61 | install -d -m0755 $(IDIR_SIPROXD)/etc
|
|---|
| 62 | $(CP) $(PKG_INSTALL_DIR)/etc/siproxd.conf.example $(IDIR_SIPROXD)/etc/siproxd.conf
|
|---|
| 63 | $(CP) $(PKG_INSTALL_DIR)/etc/siproxd_passwd.cfg $(IDIR_SIPROXD)/etc/
|
|---|
| 64 | install -d -m0755 $(IDIR_SIPROXD)/etc/init.d
|
|---|
| 65 | install -m0755 files/siproxd.init $(IDIR_SIPROXD)/etc/init.d/siproxd
|
|---|
| 66 | install -d -m0755 $(IDIR_SIPROXD)/usr/sbin
|
|---|
| 67 | $(CP) $(PKG_INSTALL_DIR)/usr/sbin/siproxd $(IDIR_SIPROXD)/usr/sbin/
|
|---|
| 68 | $(RSTRIP) $(IDIR_SIPROXD)
|
|---|
| 69 | $(IPKG_BUILD) $(IDIR_SIPROXD) $(PACKAGE_DIR)
|
|---|
| 70 |
|
|---|