mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 17:43:10 +02:00
Add fakeidentd a lightweight identd daemon.
Fix minor typo in menuconfig for weechat git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3631 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c590e73632
commit
32155c7871
@ -85,6 +85,7 @@ source "package/elhttp/Config.in"
|
|||||||
source "package/ether-wake/Config.in"
|
source "package/ether-wake/Config.in"
|
||||||
source "package/ethtool/Config.in"
|
source "package/ethtool/Config.in"
|
||||||
source "package/ez-ipupdate/Config.in"
|
source "package/ez-ipupdate/Config.in"
|
||||||
|
source "package/fakeidentd/Config.in"
|
||||||
source "package/fping/Config.in"
|
source "package/fping/Config.in"
|
||||||
source "package/fprobe/Config.in"
|
source "package/fprobe/Config.in"
|
||||||
source "package/fprobe-ulog/Config.in"
|
source "package/fprobe-ulog/Config.in"
|
||||||
|
@ -49,6 +49,7 @@ package-$(BR2_PACKAGE_ELINKS) += elinks
|
|||||||
package-$(BR2_PACKAGE_ETHER_WAKE) += ether-wake
|
package-$(BR2_PACKAGE_ETHER_WAKE) += ether-wake
|
||||||
package-$(BR2_COMPILE_EXPAT) += expat
|
package-$(BR2_COMPILE_EXPAT) += expat
|
||||||
package-$(BR2_PACKAGE_EZIPUPDATE) += ez-ipupdate
|
package-$(BR2_PACKAGE_EZIPUPDATE) += ez-ipupdate
|
||||||
|
package-$(BR2_PACKAGE_FAKEIDENTD) += fakeidentd
|
||||||
package-$(BR2_PACKAGE_FETCHMAIL) += fetchmail
|
package-$(BR2_PACKAGE_FETCHMAIL) += fetchmail
|
||||||
package-$(BR2_COMPILE_FLAC) += flac
|
package-$(BR2_COMPILE_FLAC) += flac
|
||||||
package-$(BR2_PACKAGE_FPING) += fping
|
package-$(BR2_PACKAGE_FPING) += fping
|
||||||
|
8
openwrt/package/fakeidentd/Config.in
Normal file
8
openwrt/package/fakeidentd/Config.in
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
config BR2_PACKAGE_FAKEIDENTD
|
||||||
|
prompt "fakeidentd........................ A static, secure identd."
|
||||||
|
tristate
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
A static secure identd, only one source file.
|
||||||
|
|
||||||
|
http://www.guru-group.fi/~too/sw/releases/
|
37
openwrt/package/fakeidentd/Makefile
Normal file
37
openwrt/package/fakeidentd/Makefile
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# $Id: $
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=fakeidentd
|
||||||
|
PKG_VERSION:=2.2
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=aa4133981c94c59868344cd3b02e8e19
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=http://distfiles.gentoo.org/distfiles/
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_CAT:=bzcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,FAKEIDENTD,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
$(TARGET_CC) -o $(PKG_BUILD_DIR)/$(PKG_NAME) $(PKG_BUILD_DIR)/identd.c
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_FAKEIDENTD):
|
||||||
|
install -d -m0755 $(IDIR_FAKEIDENTD)/usr/sbin \
|
||||||
|
$(IDIR_FAKEIDENTD)/etc/init.d \
|
||||||
|
$(IDIR_FAKEIDENTD)/etc/default/
|
||||||
|
echo $(whoami) > $(IDIR_FAKEIDENTD)/etc/default/$(PKG_NAME)
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/fakeidentd $(IDIR_FAKEIDENTD)/usr/sbin/
|
||||||
|
$(CP) ./files/$(PKG_NAME).init $(IDIR_FAKEIDENTD)/etc/init.d/$(PKG_NAME)
|
||||||
|
$(RSTRIP) $(IDIR_FAKEIDENTD)
|
||||||
|
$(IPKG_BUILD) $(IDIR_FAKEIDENTD) $(PACKAGE_DIR)
|
||||||
|
|
18
openwrt/package/fakeidentd/files/fakeidentd.init
Normal file
18
openwrt/package/fakeidentd/files/fakeidentd.init
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
NAME=fakeidentd
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
[ -e $DEFAULT ] && $NAME $DEFAULT
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
killall $NAME
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
killall $NAME
|
||||||
|
$NAME
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Usage: $NAME (start|stop|restart)" > 2&
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
4
openwrt/package/fakeidentd/ipkg/fakeidentd.control
Normal file
4
openwrt/package/fakeidentd/ipkg/fakeidentd.control
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Package: fakeidentd
|
||||||
|
Description: A static, secure identd.
|
||||||
|
Section: net
|
||||||
|
Priority: optional
|
@ -1,4 +1,4 @@
|
|||||||
menu "weechat................................. Lightweight IRC client"
|
menu "weechat........................... Lightweight IRC client"
|
||||||
|
|
||||||
config BR2_PACKAGE_WEECHAT
|
config BR2_PACKAGE_WEECHAT
|
||||||
prompt "weechat.......................... Lightweight IRC client"
|
prompt "weechat.......................... Lightweight IRC client"
|
||||||
|
Loading…
Reference in New Issue
Block a user