c45922f2a9
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9977 3c298f89-4303-0410-b956-a3cf2f4a3e73
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
#
|
|
# 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:=frickin
|
|
PKG_VERSION:=1.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/frickin
|
|
PKG_MD5SUM:= 5b2e98da2310c71c703d4617b88a173f
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/frickin
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=PPTP (Point-to-Point Tunneling Protocol) proxy
|
|
URL:=http://frickin.sourceforge.net/
|
|
SUBMENU:=VPN
|
|
endef
|
|
|
|
define Package/frickin/description
|
|
Frickin PPTP Proxy allows a Point-to-Point Tunneling Protocol (PPTP)
|
|
client to connect to a PPTP server through Network Address
|
|
Translation (NAT).
|
|
endef
|
|
|
|
define Package/frickin/conffiles
|
|
/etc/default/frickin
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
all
|
|
endef
|
|
|
|
define Package/frickin/install
|
|
$(INSTALL_DIR) $(1)/etc/default
|
|
$(INSTALL_DATA) ./files/frickin.default $(1)/etc/default/frickin
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/frickin.init $(1)/etc/init.d/frickin
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/frickin $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,frickin))
|