Merge pull request #1423 from bougyman/hidentd

New package: hidentd-0.4
This commit is contained in:
bougyman 2015-04-26 22:05:50 -05:00
commit 82b05bd1b1
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,2 @@
#!/bin/sh
exec logger -t hidentd

View File

@ -0,0 +1,6 @@
#!/bin/sh
# see man hidentd for options list and descriptions
: ${OPTS:="-r -s"}
HIUID=`id -u hidentd`
HIGID=`id -g hidentd`
exec tcpserver -R -H -l 0 -u $HIUID -g $HIGID 0 auth /usr/bin/hidentd $OPTS 2>&1

21
srcpkgs/hidentd/template Normal file
View File

@ -0,0 +1,21 @@
# Template file for 'hidentd'
pkgname=hidentd
version=0.4
revision=1
build_style=gnu-configure
depends="ucspi-tcp"
short_desc="A simple and secure ident (RFC1413) server"
nocross=yes
maintainer="bougyman <bougyman@voidlinux.eu>"
license="GPL-2"
homepage="http://core.segfault.pl/~hobbit/hidentd/"
distfiles="http://core.segfault.pl/~hobbit/hidentd/dist/hidentd-${version}.tar.gz"
checksum=cc89268edb2964e15dfd21b147fcf745cc49a832deab003ff0968bf999195f78
system_accounts="hidentd"
system_groups="hidentd"
post_install() {
vlicense COPYING
vdoc README
vsv hidentd
}