wok-tiny annotate p910nd/receipt @ rev 183

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