wok-tiny view p910nd/receipt @ rev 86

Add lpd-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 21 19:04:10 2012 +0200 (2012-08-21)
parents c5d2f4ae4c16
children a6d2ddc65590
line source
1 # SliTaz package receipt.
3 PACKAGE="p910nd"
4 VERSION="0.93"
5 CATEGORY="network"
6 SHORT_DESC="Forward printer device to 9100+ ports"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://p910nd.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 [ -n "$TARGET" ] || TARGET="i486"
12 BUILD_DEPENDS="uclibc-cross-compiler-$TARGET"
13 DEPENDS="base-tiny"
14 CONFIG_FILES="/etc/inetd.conf /etc/rcS.conf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make CC=uclibc-$TARGET-cc CFLAGS=-DLOCKFILE_DIR=\\\"/var/lock\\\" &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr $fs/etc/init.d $fs/dev
28 cp -a $_pkg/usr/sbin $fs/usr
29 ln -s daemon $fs/etc/init.d/p910nd
30 }
32 post_install()
33 {
34 [ -n "$DEVICES" ] || DEVICES="/dev/lp0"
35 grep -q inetd $1/etc/rcS.conf ||
36 sed -i 's/^RUN_DAEMONS="/&inetd /' $1/etc/rcS.conf
37 grep -q p910nd $1/etc/inetd.conf ||
38 echo "$DEVICES" | dos2unix | awk '{ if ($1 != "") printf \
39 "%d stream tcp nowait root %s %s -b -f %s\n", 9100 + n++, \
40 "/usr/sbin/p910nd", "/usr/sbin/p910nd", $1 }' >> $1/etc/inetd.conf
41 for dev in $(cat $DEVICES | dos2unix); do
42 mknod -m 660 $1$dev c 6 ${dev#*lp}
43 done
44 }
46 config_form()
47 {
48 [ -n "$DEVICES" ] || DEVICES=/dev/lp0
49 grep -q p910nd $1/etc/inetd.conf && return 1
50 cat <<EOT
51 Printer device(s):
52 <textarea name="DEVICES">
53 $DEVICES
54 </textarea>
55 EOT
56 }