Merge pull request #1423 from bougyman/hidentd
New package: hidentd-0.4
This commit is contained in:
commit
82b05bd1b1
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exec logger -t hidentd
|
|
@ -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
|
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue