2006-08-07 12:39:12 +00:00
|
|
|
#
|
2012-05-28 15:42:41 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-08-07 12:39:12 +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:=reaim
|
|
|
|
PKG_VERSION:=0.8
|
2012-05-28 15:42:41 +00:00
|
|
|
PKG_RELEASE:=3
|
2006-08-07 12:39:12 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/reaim
|
|
|
|
PKG_MD5SUM:=647d2ab72ec454f89294accfb3182c09
|
2006-08-07 12:39:12 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2006-08-07 12:39:12 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/reaim
|
2007-09-25 18:29:45 +00:00
|
|
|
SUBMENU:=Instant Messaging
|
2006-08-07 12:39:12 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+iptables
|
|
|
|
TITLE:=A transparent AIM / MSN proxy
|
2007-01-08 11:19:08 +00:00
|
|
|
URL:=http://reaim.sourceforge.net/
|
2006-08-07 12:39:12 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/reaim/description
|
|
|
|
ReAIM is a proxy for file transfers with MSN/AIM.
|
|
|
|
endef
|
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
define Package/reaim/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/reaim $(1)/usr/sbin/
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/reaim.init $(1)/etc/init.d/reaim
|
2006-08-07 12:39:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,reaim))
|