packages/uanytun: fix whitespaces

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@40203 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2014-03-27 07:05:27 +00:00
parent 8c9b5db7c4
commit 1a049c9634

View File

@ -1,4 +1,4 @@
# #
# Copyright (C) 2008 Christian Pointner, # Copyright (C) 2008 Christian Pointner,
# <equinox@anytun.org> # <equinox@anytun.org>
# #
@ -34,15 +34,15 @@ endef
define Package/uanytun/desc-template define Package/uanytun/desc-template
uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol. uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g. IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methodes used by SRTP. It is intended to deliver authentication based on the methodes used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol. of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms. implementation intended to act as a client on small platforms.
endef endef
@ -116,7 +116,7 @@ ifneq ($(CONFIG_PACKAGE_uanytun-nocrypt),)
NO_CRYPT_OBJ=1 \ NO_CRYPT_OBJ=1 \
TARGET=Linux \ TARGET=Linux \
CFLAGS="$(TARGET_CFLAGS) -DNO_CRYPT" \ CFLAGS="$(TARGET_CFLAGS) -DNO_CRYPT" \
LDFLAGS="$(TARGET_LDFLAGS) -ldl" LDFLAGS="$(TARGET_LDFLAGS) -ldl"
$(STRIP) $(PKG_BUILD_DIR)/uanytun-nocrypt/src/uanytun $(STRIP) $(PKG_BUILD_DIR)/uanytun-nocrypt/src/uanytun
endef endef
endif endif
@ -134,7 +134,7 @@ ifneq ($(CONFIG_PACKAGE_uanytun-sslcrypt),)
$(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_OPTS) \
TARGET=Linux \ TARGET=Linux \
CFLAGS="$(TARGET_CFLAGS) -DUSE_SSL_CRYPTO -I$(STAGING_DIR)/usr/include" \ CFLAGS="$(TARGET_CFLAGS) -DUSE_SSL_CRYPTO -I$(STAGING_DIR)/usr/include" \
LDFLAGS="$(TARGET_LDFLAGS) -ldl -lcrypto" LDFLAGS="$(TARGET_LDFLAGS) -ldl -lcrypto"
$(STRIP) $(PKG_BUILD_DIR)/uanytun-sslcrypt/src/uanytun $(STRIP) $(PKG_BUILD_DIR)/uanytun-sslcrypt/src/uanytun
endef endef
endif endif
@ -152,7 +152,7 @@ ifneq ($(CONFIG_PACKAGE_uanytun),)
$(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_OPTS) \
TARGET=Linux \ TARGET=Linux \
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
LDFLAGS="$(TARGET_LDFLAGS) -ldl -lgcrypt -lgpg-error" LDFLAGS="$(TARGET_LDFLAGS) -ldl -lgcrypt -lgpg-error"
$(STRIP) $(PKG_BUILD_DIR)/uanytun/src/uanytun $(STRIP) $(PKG_BUILD_DIR)/uanytun/src/uanytun
endef endef
endif endif