massive Makefile cleanup, add missing 'svn:keywords' property

git-svn-id: svn://svn.openwrt.org/openwrt/packages@5348 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2006-10-30 13:51:50 +00:00
parent d6c03f5259
commit 5cb332fb35
139 changed files with 1341 additions and 1322 deletions

View File

@ -11,14 +11,13 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=srelay
PKG_VERSION:=0.4.6
PKG_RELEASE:=1
PKG_MD5SUM:=4a9f3298b38d8588f0ffde31b946a47f
PKG_SOURCE_URL:=@SF/socks-relay
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/socks-relay
PKG_MD5SUM:=4a9f3298b38d8588f0ffde31b946a47f
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk
@ -26,7 +25,6 @@ define Package/srelay
SECTION:=net
CATEGORY:=Network
TITLE:=A socks 4/5 proxy server
DESCRIPTION:=A socks 4/5 protocol proxy server
URL:=http://www.c-wind.com/srelay/
endef
@ -35,15 +33,22 @@ define Package/srelay/conffiles
endef
define Build/Configure
$(call Build/Configure/Default,--disable-thread)
$(call Build/Configure/Default, \
--disable-thread \
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
endef
define Package/srelay/install
install -m0755 -d $(1)/usr/bin
install -m0755 -d $(1)/etc/init.d
install -d -m0755 $(1)/usr/bin
install -m0755 $(PKG_BUILD_DIR)/srelay $(1)/usr/bin/
install -d -m0755 $(1)/etc
install -m0644 files/srelay.conf $(1)/etc/
install -d -m0755 $(1)/etc/init.d
install -m0755 files/srelay.init $(1)/etc/init.d/srelay
install -m0644 files/srelay.conf $(1)/etc
endef
$(eval $(call BuildPackage,srelay))