aboutsummaryrefslogtreecommitdiffstats
path: root/package/pptp/Makefile
blob: 51bac8a5896a2849ed9cb42314219a179de9f700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=pptp
PKG_VERSION:=1.7.1
PKG_RELEASE:=5

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/pptpclient
PKG_MD5SUM:=b47735ba5d6d37dfdbccb85afc044ede

include $(INCLUDE_DIR)/package.mk

define Package/pptp
  SECTION:=net
  CATEGORY:=Network
  TITLE:=PPTP client
  MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
  URL:=http://pptpclient.sourceforge.net/
  DEPENDS:=+ppp +kmod-gre +resolveip +ip
endef

define Package/pptp/description
 This package contains a PPTP (Point-to-Point Tunneling Protocol) client.
endef

define Package/pptp/conffiles
/etc/ppp/options.pptp
endef

MAKE_FLAGS += OPTIMIZE="$(TARGET_CFLAGS)"

ifneq ($(CONFIG_PACKAGE_netifd),)
  define Package/pptp/install
	$(INSTALL_DIR) $(1)/usr/sbin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/
	$(INSTALL_DIR) $(1)/etc/ppp
	$(INSTALL_DATA) ./files/options.pptp $(1)/etc/ppp/
	$(INSTALL_DIR) $(1)/lib/netifd/proto/
	$(INSTALL_BIN) ./files/pptp.sh $(1)/lib/netifd/proto/
  endef
else
  define Package/pptp/install
	$(INSTALL_DIR) $(1)/usr/sbin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/
	$(INSTALL_DIR) $(1)/etc/ppp
	$(INSTALL_DATA) ./files/options.pptp $(1)/etc/ppp/
	$(INSTALL_DIR) $(1)/lib/network
	$(INSTALL_DATA) ./files.old/pptp.sh $(1)/lib/network/
  endef
endif

$(eval $(call BuildPackage,pptp))
ase class for high level * object types such as an API for a File System implementation. * @{ */ #ifndef _CHFILES_H_ #define _CHFILES_H_ /** * @brief Error code from the file stream methods. */ #define FILE_ERROR 0xFFFFFFFFUL /** * @brief File offset type. */ typedef uint32_t fileoffset_t; /** * @brief BaseFileStream specific methods. */ #define _base_file_stream_methods \ _base_sequential_stream_methods \ /* File close method.*/ \ uint32_t (*close)(void *instance); \ /* Get last error code method.*/ \ int (*geterror)(void *instance); \ /* File get size method.*/ \ fileoffset_t (*getsize)(void *instance); \ /* File get current position method.*/ \ fileoffset_t (*getposition)(void *instance); \ /* File seek method.*/ \ fileoffset_t (*lseek)(void *instance, fileoffset_t offset); /** * @brief @p BaseFileStream specific data. * @note It is empty because @p BaseFileStream is only an interface * without implementation. */ #define _base_file_stream_data \ _base_sequential_stream_data /** * @extends BaseSequentialStreamVMT * * @brief @p BaseFileStream virtual methods table. */ struct BaseFilelStreamVMT { _base_file_stream_methods }; /** * @extends BaseSequentialStream * * @brief Base file stream class. * @details This class represents a generic file data stream. */ typedef struct { /** @brief Virtual Methods Table.*/ const struct FileStreamVMT *vmt; _base_file_stream_data } BaseFileStream; /** * @name Macro Functions (BaseFileStream) * @{ */ /** * @brief Base file Stream close. * @details The function closes a file stream. * * @param[in] ip pointer to a @p BaseFileStream or derived class * * @api */ #define chFileStreamClose(ip) ((ip)->vmt->close(ip)) /** * @brief Returns an implementation dependent error code. * * @param[in] ip pointer to a @p BaseFileStream or derived class * * @api */ #define chFileStreamGetError ((ip)->vmt->geterror(ip)) /** * @brief Returns the current file size. * * @param[in] ip pointer to a @p BaseFileStream or derived class * * @api */ #define chFileStreamGetSize ((ip)->vmt->getposition(ip)) /** * @brief Returns the current file pointer position. * * @param[in] ip pointer to a @p BaseFileStream or derived class * * @api */ #define chFileStreamGetPosition ((ip)->vmt->getposition(ip)) /** * @brief Moves the file current pointer to an absolute position. * * @param[in] ip pointer to a @p BaseFileStream or derived class * @param[in] offset new absolute position * * @api */ #define chFileStreamSeek ((ip)->vmt->lseek(ip, offset)) /** @} */ #endif /* _CHFILES_H_ */ /** @} */