diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-15 13:40:51 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-15 13:40:51 +0000 |
commit | defb55e8d08248ff07de87667540c9d075a30b2d (patch) | |
tree | 2c5a8be07d03972a95f8e2c455b045885999cc5b /openwrt/package/miau/Makefile | |
parent | c2938966836db28e895b9eb37f9eec9195b76550 (diff) |
add miau from Benjamin Binier, updated to newest upstream, thx. add syslog-ng from Sebastien Bourgasser, pending missing libol package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3378 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/miau/Makefile')
-rw-r--r-- | openwrt/package/miau/Makefile | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/openwrt/package/miau/Makefile b/openwrt/package/miau/Makefile new file mode 100644 index 0000000000..b8290aa7b4 --- /dev/null +++ b/openwrt/package/miau/Makefile @@ -0,0 +1,74 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=miau +PKG_VERSION:=0.6.0.2 +PKG_RELEASE:=1 +PKG_MD5SUM:=1b78d219a03655399c165eeb021cddd8 + +PKG_SOURCE_URL:= @SF/miau +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,MIAU,miau,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --enable-automode \ + --enable-releasenick \ + --enable-uptime \ + --enable-privlog \ + --enable-onconnect \ + $(DISABLE_NLS) \ + $(DISABLE_LARGEFILE) \ + ); + touch $@ + +$(PKG_BUILD_DIR)/.built: + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + install + touch $@ + +$(IPKG_MIAU): + install -d -m0755 $(IDIR_MIAU)/usr/bin + $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(IDIR_MIAU)/usr/bin/ + install -d -m0755 $(IDIR_MIAU)/etc/init.d + install -d -m0755 $(IDIR_MIAU)/etc/default + install -d -m0755 $(IDIR_MIAU)/etc/miau + install -m0755 ./files/S50miau $(IDIR_MIAU)/etc/init.d/S50miau + install -m0644 ./files/miau $(IDIR_MIAU)/etc/default/miau + install -m0644 ./files/miaurc $(IDIR_MIAU)/etc/miau/miaurc + $(RSTRIP) $(IDIR_MIAU) + $(IPKG_BUILD) $(IDIR_MIAU) $(PACKAGE_DIR) |