2006-08-05 02:44:34 +00:00
|
|
|
#
|
2011-01-01 06:54:37 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-08-05 02:44:34 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=miau
|
2011-01-01 06:54:37 +00:00
|
|
|
PKG_VERSION:=0.6.6
|
2007-12-08 20:26:17 +00:00
|
|
|
PKG_RELEASE:=1
|
2006-08-05 02:44:34 +00:00
|
|
|
|
2007-06-30 14:06:06 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/miau
|
2011-01-01 06:54:37 +00:00
|
|
|
PKG_MD5SUM:=8778b8564c679cf5487b1972ca0b35e4
|
2006-08-05 02:44:34 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2006-08-05 02:44:34 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/miau
|
2007-09-25 18:29:45 +00:00
|
|
|
SUBMENU:=Instant Messaging
|
2006-08-05 02:44:34 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Another IRC-bouncer/proxy
|
2011-01-01 06:54:37 +00:00
|
|
|
URL:=http://miau.sourceforge.net/
|
2006-08-05 02:44:34 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/miau/description
|
|
|
|
In short, miau is an IRC-bouncer/proxy.
|
2011-01-01 06:54:37 +00:00
|
|
|
Being more verbose, miau is small but quite featured
|
|
|
|
IRC-bouncer - a service bit like HTTP-proxy, but
|
2007-10-14 04:32:56 +00:00
|
|
|
for IRC-networks.
|
|
|
|
endef
|
|
|
|
|
2011-01-01 06:54:37 +00:00
|
|
|
define Package/miau/conffiles
|
|
|
|
/etc/miau/miaurc
|
|
|
|
endef
|
|
|
|
|
2007-06-30 14:06:06 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-automode \
|
|
|
|
--enable-releasenick \
|
|
|
|
--enable-uptime \
|
|
|
|
--enable-privlog \
|
|
|
|
--enable-onconnect
|
2006-08-05 02:44:34 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
define Package/miau/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_DIR) $(1)/etc/miau
|
|
|
|
$(INSTALL_BIN) ./files/miau.init $(1)/etc/init.d/miau
|
2011-01-01 06:54:37 +00:00
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/doc/miau/examples/miaurc $(1)/etc/miau/
|
2006-08-05 02:44:34 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,miau))
|