e4cd392bd2
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@40206 3c298f89-4303-0410-b956-a3cf2f4a3e73
45 lines
959 B
Makefile
45 lines
959 B
Makefile
#
|
|
# Copyright (C) 2006-2011 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:=oidentd
|
|
PKG_VERSION:=2.0.8
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/ojnk
|
|
PKG_MD5SUM:=c3d9a56255819ef8904b867284386911
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/oidentd
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Identd server
|
|
URL:=http://dev.ojnk.net/
|
|
endef
|
|
|
|
define Package/oidentd/description
|
|
A nat aware identd server that will correctly forwared requests to clients.
|
|
endef
|
|
|
|
# uses GNU configure
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,all)
|
|
endef
|
|
|
|
define Package/oidentd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) $(PKG_BUILD_DIR)/src/oidentd $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/oidentd.init $(1)/etc/init.d/oidentd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,oidentd))
|