wok-tiny view p910nd/receipt @ rev 21

Add module-btrfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 03 11:46:32 2011 +0100 (2011-02-03)
parents
children a53953f4078e
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 mknod -m 660 $fs/dev/lp0 c 6 0
30 ln -s daemon $fs/etc/init.d/p910nd
31 }
33 post_install()
34 {
35 [ -n "$DEVICES" ] || DEVICES="/dev/lp0"
36 grep -q inetd $1/etc/rcS.conf ||
37 sed -i 's/^RUN_DAEMONS="/&inetd /' $1/etc/rcS.conf
38 grep -q p910nd $1/etc/rcS.conf ||
39 sed -i 's/^RUN_DAEMONS="/&p910nd /' $1/etc/rcS.conf
40 grep -q p910nd $1/etc/inetd.conf ||
41 echo "$DEVICES" | dos2unix | awk '{ if ($1 != "") printf \
42 "%d stream tcp nowait root %s %s -b -f %s\n", 9100 + n++, \
43 "/usr/sbin/p910nd", "/usr/sbin/p910nd", $1 }' >> $1/etc/inetd.conf
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 }