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

@ -4,50 +4,43 @@
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id:$
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=oidentd
PKG_VERSION:=2.0.8
PKG_RELEASE:=1
PKG_MD5SUM:=c3d9a56255819ef8904b867284386911
PKG_SOURCE_URL:=@SF/ojnk
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/ojnk
PKG_MD5SUM:=c3d9a56255819ef8904b867284386911
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
define Package/oidentd
SECTION:=net
CATEGORY:=Network
DEPENDS:=
TITLE:=Identd server
DESCRIPTION:=A nat aware identd server that will correctly forwared requests to clients
DESCRIPTION:=\
A nat aware identd server that will correctly forwared requests to clients.
URL:=http://dev.ojnk.net/
endef
define Build/Configure
$(call Build/Configure/Default,--includedir=$(PKG_BUILD_DIR)/)
endef
# uses GNU configure
define Build/Compile
$(call Build/Compile/Default,all)
$(call Build/Compile/Default,all)
endef
define Package/oidentd/install
install -m0755 -d $(1)/usr/sbin
install -m0755 -d $(1)/etc/init.d
install -d -m0755 $(1)/usr/sbin
$(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
install -d -m0755 $(1)/etc/init.d
$(CP) ./files/oidentd.init $(1)/etc/init.d/oidentd
endef
$(eval $(call BuildPackage,oidentd))