2006-08-07 12:39:12 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=reaim
|
|
|
|
PKG_VERSION:=0.8
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
|
2006-08-07 12:39:12 +00:00
|
|
|
define Build/Compile
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Build/Compile/Default, \
|
2006-08-07 12:39:12 +00:00
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
2006-08-18 21:21:06 +00:00
|
|
|
all install \
|
2006-10-30 13:51:50 +00:00
|
|
|
)
|
2006-08-07 12:39:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
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))
|