[COPY] --- T2-COPYRIGHT-BEGIN --- [COPY] t2/package/*/webcdwriter/webcdwriter.desc [COPY] Copyright (C) 2004 - 2025 The T2 SDE Project [COPY] SPDX-License-Identifier: GPL-2.0 [COPY] --- T2-COPYRIGHT-END --- [I] A tool for network CD/DVD writing [T] webCDwriter can be used to make the CD- and DVD-writer(s) [T] connected to a Linux box available to all users in your network. It [T] consists of the server CDWserver and the clients webCDcreator [T] and rcdrecord. CDWserver stores the files transmitted by the [T] clients, reserves the CD-writer and controls the CD-writer using [T] cdrecord. webCDcreator is a Java applet that runs within your [T] browser or by Java Web Start, assists you when putting together a [T] CD, and transmits the files. Finally rcdrecord is a command line [T] client that tries to offer the functionality of cdrecord over the [T] network with full multi-user support. [U] http://JoergHaeger.de/webCDwriter/ [A] Joerg P. M. Haeger [M] The T2 Project [C] extra/network extra/office extra/archive [L] GPL [S] Stable [V] 2.8.2 [D] b6ea239f48ff4fbe2771deac3dd3cbee6f37c35cbafbfe672182b131 webCDwriter-2.8.2.tar.bz2 http://joerghaeger.de/webCDwriter/download/ wcwuser=cdwserve wcwgroup=cdwserve confopt="--user=$wcwuser --group=$wcwgroup --pam" # FIXME maybe as config.in options: #--doNotCompileCDWserver if you want to install CDWserver Pro #--nosCert=certificate Netscape Object Signing Certificate # (required to sign the webCDcreator for Netscape 4 # and the RSA version for IE) #--sunCert=certificate certificate for the keytool from Sun webcdwriter_pm() { # use our own init rm -f $root/etc/rc.d/init.d/CDWserver # make "setuid root copies" of cdrdao, cdrecord, mkisofs and readcd TOOLSDIR=$root$localstatedir/CDWserver/bin for tool in cdrdao cdrecord mkisofs readcd do if [ ! -e $TOOLSDIR/$tool ]; then if [ -e $root/usr/bin/$tool ]; then cp -pf $root/usr/bin/$tool $TOOLSDIR/ elif [ -e /usr/local/bin/$tool ]; then cp -pf /usr/local/bin/$tool $TOOLSDIR/ fi if [ -e $TOOLSDIR/$tool ]; then chown root $TOOLSDIR/$tool 2> /dev/null chgrp cdwserve $TOOLSDIR/$tool 2> /dev/null chmod 4750 $TOOLSDIR/$tool fi fi done } hook_add postmake 5 webcdwriter_pm