Codebase list rplay / debian/3.3.1-2
Import Debian changes 3.3.1-2 rplay (3.3.1-2) unstable; urgency=low * forgot to remove install-mime from prerm. Bug#28395 rplay (3.3.1-1) unstable; urgency=low * new upstream source. * use update-mime. rplay (3.3.0-4) unstable; urgency=low * moved startup script to 40 so that rplayd gets started after amd. rplay (3.3.0-3) unstable; urgency=low * applied upstream "broadcast" patch. * changed mpeg helper regex to match mp[1-3] * fixed all lintian warnings. rplay (3.3.0-2) unstable; urgency=medium * fixed info installation bug. * fixed "corrupt installation bug" Bug#24494. * use the init.d and purge files for debstd. * remove /etc/rplay/rplay.hosts from the distribution. rplay (3.3.0-1) unstable; urgency=low * Initial Release. lantz moore authored 25 years ago Thorsten Alteholz committed 5 years ago
16 changed file(s) with 319 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rplay for DEBIAN
1 ----------------------
2
3 A patch, supplied by Mark Boyns <boyns@contigo.com>, correcting rplay
4 broadcasting has been applied.
5
6 lantz moore <lmoore@debian.org>, Tue, 16 Jun 1998 19:11:13 -0700
0 rplay (3.3.1-2) unstable; urgency=low
1
2 * forgot to remove install-mime from prerm. Bug#28395
3
4 -- lantz moore <lmoore@debian.org> Thu, 22 Oct 1998 10:47:45 -0700
5
6 rplay (3.3.1-1) unstable; urgency=low
7
8 * new upstream source.
9 * use update-mime.
10
11 -- lantz moore <lmoore@debian.org> Thu, 15 Oct 1998 09:28:29 -0700
12
13 rplay (3.3.0-4) unstable; urgency=low
14
15 * moved startup script to 40 so that rplayd gets started after amd.
16
17 -- lantz moore <lmoore@debian.org> Fri, 31 Jul 1998 09:30:30 -0700
18
19 rplay (3.3.0-3) unstable; urgency=low
20
21 * applied upstream "broadcast" patch.
22 * changed mpeg helper regex to match mp[1-3]
23 * fixed all lintian warnings.
24
25 -- lantz moore <lmoore@debian.org> Wed, 29 Jul 1998 13:53:06 -0700
26
27 rplay (3.3.0-2) unstable; urgency=medium
28
29 * fixed info installation bug.
30 * fixed "corrupt installation bug" Bug#24494.
31 * use the init.d and purge files for debstd.
32 * remove /etc/rplay/rplay.hosts from the distribution.
33
34 -- lantz moore <lmoore@debian.org> Sun, 12 Jul 1998 20:39:04 -0700
35
36 rplay (3.3.0-1) unstable; urgency=low
37
38 * Initial Release.
39
40 -- lantz moore <lmoore@debian.org> Mon, 22 Jun 1998 13:55:25 -0700
41
42 Local variables:
43 mode: debian-changelog
44 add-log-mailing-address: "lmoore@debian.org"
45 End:
0 /etc/rplay/rplay.conf
1 /etc/rplay/rplay.servers
2 /etc/rplay/rplay.helpers
3 /etc/init.d/rplay
0 Source: rplay
1 Section: sound
2 Priority: optional
3 Maintainer: lantz moore <lmoore@debian.org>
4 Standards-Version: 2.4.0.0
5
6 Package: rplay
7 Architecture: any
8 Depends: ${shlibs:Depends}, perl
9 Suggests: xmp (>> 1.1.5), mpg123
10 Description: A feature-rich network audio system.
11 RPlay allows sounds to be played to and from local and remote Unix systems.
12 Sounds can be played with or without sending audio data over the network
13 using either UDP or TCP/IP. RPlay audio servers can be configured to
14 share sound files with each other.
15 .
16 Support for RPlay is included in several applications. These include
17 xpilot, xlockmore, xboing, fvwm, and ctwm.
18 .
19 mailsound or Mailsound can be used to play sounds when mail arrives.
0 This package was debianized by lantz moore <lmoore@debian.org>.
1
2 It was downloaded from ftp://rplay.doit.org/pub/rplay-3.3.1.tar.gz
3
4 RPlay was written by Mark Boyns <boyns@doit.org>.
5
6 Copyright (C) 1993-98 Mark R. Boyns <boyns@doit.org>
7
8 This program is free software; you may redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 This is distributed in the hope that it will be useful, but without
14 any warranty; without even the implied warranty of merchantability or
15 fitness for a particular purpose. See the GNU General Public License
16 for more details.
17
18 A copy of the GNU General Public License is available as
19 /usr/doc/copyright/GPL in the Debian GNU/Linux distribution or on the
20 World Wide Web at http://www.gnu.org/copyleft/gpl.html. You can also
21 obtain it by writing to the Free Software Foundation, Inc., 59 Temple
22 Place - Suite 330, Boston, MA 02111-1307, USA.
0 usr/bin
1 usr/sbin
2 usr/lib
3 etc/rplay
4 etc/init.d
5 usr/man/man1
6 usr/man/man5
7 usr/man/man8
8 usr/info
9 usr/include
10 usr/lib/perl5
11 usr/doc/rplay
12 usr/lib/mime/packages
0 NEWS
1 README
2 README.linux
3 README.sgi
4 README.sun
5 TODO
0 etc/rplay.hosts
0 #!/bin/sh
1
2 # /etc/init.d/rplay: start and stop the rplay daemon
3
4 # there have been requests to have rplay start up after autofs and amd.
5 FLAGS="defaults 40"
6
7 test -x /usr/sbin/rplayd || exit 0
8
9 if egrep "^rplay" /etc/inetd.conf > /dev/null; then
10 echo "RPlayd is currently started from inetd"
11 exit 0
12 fi
13
14 case "$1" in
15 start) echo -n "Starting rplay server: rplayd"
16 start-stop-daemon --start --quiet --exec /usr/sbin/rplayd 2> /dev/null
17 echo "."
18 ;;
19
20 stop) echo -n "Stopping rplay server: rplayd"
21 start-stop-daemon --stop --quiet --exec /usr/sbin/rplayd
22 echo "."
23 ;;
24
25 reload|force-reload)
26 /usr/bin/rplay --reset
27 ;;
28
29 restart)
30 echo -n "Restarting rplay server: rplayd"
31 start-stop-daemon --stop --quiet --exec /usr/sbin/rplayd
32 start-stop-daemon --start --quiet --exec /usr/sbin/rplayd 2> /dev/null
33 echo "."
34 ;;
35
36 *)
37 echo "Usage: /etc/init.d/rplay {start|stop|reload}" >&2
38 exit 1
39 ;;
40 esac
41 exit 0
0 audio/wav; rplay %s; description="WAV Audio"
1 audio/x-wav; rplay %s; description="WAV Audio"
2 audio/au; rplay %s; description="Sun Audio"
3 audio/basic; rplay %s; description="Basic Audio"
4 audio/mpeg; rplay %s; description="MPEG Audio"
5 audio/x-mpeg; rplay %s; description="MPEG Audio"
6 audio/x-aiff; rplay %s; description="AIFF Audio"
0 #!/bin/sh -e
1
2 case "$1" in
3 configure)
4 ;;
5
6 abort-upgrade|abort-remove|abort-deconfigure)
7 exit 0
8 ;;
9
10 *)
11 echo "postinst called with unknown argument \`$s'" >&2
12 ;;
13 esac
14
15 install-info --section RPlay RPlay \
16 --description='RPLAY. a network sound utility.' \
17 --quiet /usr/info/RPLAY.info
18 install-info --section RPlay RPlay \
19 --description='rplay. a network sound utility.' \
20 --quiet /usr/info/rplay.info
21 install-info --section RPlay RPlay \
22 --description='rptp. the rplay sound network protocol.' \
23 --quiet /usr/info/RPTP.info
24 install-info --section RPlay RPlay \
25 --description='librplay. the rplay library.' \
26 --quiet /usr/info/librplay.info
27
28 if [ -e /etc/init.d/rplayd ]; then
29 rm /etc/init.d/rplayd
30 fi
31
32 test /usr/sbin/update-mime && /usr/sbin/update-mime || true
33
34 if [ ! -e /etc/rplay/rplay.hosts ]; then
35 echo "RPlayd is currently configured to only allow connections from localhost."
36 echo " To modify this, see /usr/doc/rplay/examples/ or man rplay.hosts(5)."
37 fi
38
39 echo "A default rplay.helpers file has been installed. This file is configured to"
40 echo " allow MPEG audio to be played by rplayd using mpg123 for conversion."
41 echo " To modify this, please see /etc/rplay/rplay.helpers."
0 #!/bin/sh -e
1
2 test -x /usr/sbin/update-mime && /usr/sbin/update-mime || true
0 #!/bin/sh -e
1
2 case "$1" in
3 install)
4 ;;
5
6 upgrade)
7 start-stop-daemon --stop --quiet --exec /usr/sbin/rplayd || true
8 ;;
9
10 abort-upgrade)
11 ;;
12
13 *)
14 echo "preinst called with unknown argument \`$1'" >&2
15 exit 0
16 ;;
17 esac
18
19 if [ ! -x /etc/init.d/rplay ]; then
20 exit 0
21 fi
0 #!/bin/sh -e
1
2 install-info --quiet --remove /usr/info/RPLAY.info
3 install-info --quiet --remove /usr/info/RPTP.info
4 install-info --quiet --remove /usr/info/librplay.info
5 install-info --quiet --remove /usr/info/rplay.info
6
7 if [ ! -x /etc/init.d/rplay ]; then
8 exit 0
9 fi
0 /etc/rplay
0 #!/usr/bin/make -f
1 # Made with the aid of debmake, by Christoph Lameter,
2 # based on the sample debian/rules file for GNU hello by Ian Jackson.
3
4 SHELL=/bin/bash
5
6 package=rplay
7
8 build:
9 $(checkdir)
10 ./configure --prefix=/usr --sysconfdir=/etc/rplay --without-x \
11 --enable-rplayd-user=nobody --enable-rplayd-group=audio
12 make CFLAGS="-O2 -g"
13 (cd contrib/mailsound; make CFLAGS="-O2 -g")
14 touch build
15
16 clean:
17 $(checkdir)
18 -rm -f build
19 -make distclean
20 -rm -f `find . -name "*~"`
21 -rm -f contrib/mailsound/mailsound{,.o}
22 -rm -rf debian/tmp debian/files* core debian/substvars
23
24 binary-indep: checkroot build
25 $(checkdir)
26
27 binary-arch: checkroot build
28 $(checkdir)
29 -rm -rf debian/tmp
30 install -d debian/tmp
31 cd debian/tmp && install -d `cat ../dirs`
32 install -s rplayd/rplayd debian/tmp/usr/sbin
33 install -s rplay/rplay rptp/rptp debian/tmp/usr/bin
34 install -m 644 librplay/librplay.a debian/tmp/usr/lib
35 install -m 644 include/rplay.h debian/tmp/usr/include
36 install -m 644 etc/rplay.{conf,servers,helpers}\
37 debian/tmp/etc/rplay
38 install -m 644 doc/*.info debian/tmp/usr/info
39 install -m 664 doc/rplay.*.5 debian/tmp/usr/man/man5
40 install -m 664 doc/{rplay,rptp}.1 debian/tmp/usr/man/man1
41 install -m 664 doc/rplayd.8 debian/tmp/usr/man/man8
42 install -s contrib/mailsound/mailsound debian/tmp/usr/bin
43 install -m 664 contrib/mailsound/mailsound.1 debian/tmp/usr/man/man1
44 install perl/Mailsound debian/tmp/usr/bin
45 install -m 664 perl/Mailsound.1 debian/tmp/usr/man/man1
46 install -m 664 perl/{RPlay.pm,rplay.ph,RPTP.pm} debian/tmp/usr/lib/perl5
47 install -s adpcm/g72xencode debian/tmp/usr/bin
48 install -m 664 adpcm/g72xencode.1 debian/tmp/usr/man/man1
49 install -s adpcm/g72xdecode debian/tmp/usr/bin
50 install -m 664 adpcm/g72xdecode.1 debian/tmp/usr/man/man1
51 install -m 644 debian/mime debian/tmp/usr/lib/mime/packages/rplay
52 install -m 664 ChangeLog debian/tmp/usr/doc/rplay/changelog
53 install -m 664 adpcm/README debian/tmp/usr/doc/rplay/README.adpcm
54 install -m 664 gsm/COPYRIGHT debian/tmp/usr/doc/rplay/COPYRIGHT.gsm
55 debstd -m
56 dpkg-gencontrol
57 chown -R root.root debian/tmp
58 chmod -R go=rX debian/tmp
59 dpkg --build debian/tmp ..
60
61 define checkdir
62 test -f debian/rules
63 endef
64
65 binary: binary-indep binary-arch
66
67 checkroot:
68 $(checkdir)
69 test root = "`whoami`"
70
71 .PHONY: binary binary-arch binary-indep clean checkroot