--- ax25-tools-0.0.8.orig/configure.in +++ ax25-tools-0.0.8/configure.in @@ -33,9 +33,12 @@ AC_CHECK_LIB(util, openpty, UTIL_LIB="-lutil",UTIL_LIB=) AC_CHECK_LIB(GL, main, GL_LIB="-lGL", AC_CHECK_LIB(MesaGL, main, GL_LIB="-lMesaGL", GL_LIB=, ${X_LIBS} ${X_PRE_LIBS} -lXi -lXext -lX11 ${X_EXTRA_LIBS}),${X_LIBS} ${X_PRE_LIBS} -lXi -lXext -lX11 ${X_EXTRA_LIBS}) +AC_LANG_SAVE +AC_LANG_CPLUSPLUS if test -n "$GL_LIB"; then AC_CHECK_LIB(fltk, main, FLTK_LIB="-lfltk $GL_LIB $X_PRE_LIBS -lXi -lXext -lX11 $X_EXTRA_LIBS", FLTK_LIB=, ${GL_LIB} ${X_LIBS} ${X_PRE_LIBS} -lXi -lXext -lX11 ${X_EXTRA_LIBS}) fi +AC_LANG_RESTORE AM_CONDITIONAL(HAVE_FLTK, test -n "$FLTK_LIB" ) @@ -47,11 +50,11 @@ dnl Checks for working glibc 2.1 headers AC_MSG_CHECKING(for working netax25/ax25.h header file) -AC_EGREP_HEADER(ax25_fwd_struct, netax25/ax25.h,AC_DEFINE(HAVE_NETAX25_AX25_H) AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) +AC_EGREP_HEADER(ax25_fwd_struct, netax25/ax25.h,AC_DEFINE(HAVE_NETAX25_AX25_H, 1, [Defined if netax25/ax25.h is working]) AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) AC_MSG_CHECKING(for working netrom/netrom.h header file) -AC_EGREP_HEADER(unsigned int ndigis, netrom/netrom.h,AC_DEFINE(HAVE_NETROM_NETROM_H) AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) +AC_EGREP_HEADER(unsigned int ndigis, netrom/netrom.h,AC_DEFINE(HAVE_NETROM_NETROM_H, 1, [Defined if netrom/netrom.h is working]) AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) AC_MSG_CHECKING(for working netrose/rose.h header file) -AC_EGREP_HEADER(rose_facilities_struct, netrose/rose.h,AC_DEFINE(HAVE_NETROSE_ROSE_H) AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) +AC_EGREP_HEADER(rose_facilities_struct, netrose/rose.h,AC_DEFINE(HAVE_NETROSE_ROSE_H, 1, [Defined if netrose/rose.h is working]) AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST --- ax25-tools-0.0.8.orig/install-sh +++ ax25-tools-0.0.8/install-sh @@ -1,19 +1,37 @@ #!/bin/sh # # install - install a program, script, or datafile -# This comes from X11R5 (mit/util/scripts/install.sh). # -# Copyright 1991 by the Massachusetts Institute of Technology +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. # -# Permission to use, copy, modify, distribute, and sell this software and its -# documentation for any purpose is hereby granted without fee, provided that -# the above copyright notice appear in all copies and that both that -# copyright notice and this permission notice appear in supporting -# documentation, and that the name of M.I.T. not be used in advertising or -# publicity pertaining to distribution of the software without specific, -# written prior permission. M.I.T. makes no representations about the -# suitability of this software for any purpose. It is provided "as is" -# without express or implied warranty. +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it @@ -163,7 +181,7 @@ # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then -defaultIFS=' +defaultIFS=' ' IFS="${IFS-${defaultIFS}}" --- ax25-tools-0.0.8.orig/missing +++ ax25-tools-0.0.8/missing @@ -1,6 +1,6 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -# Copyright (C) 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc. # Franc,ois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -23,6 +23,14 @@ exit 1 fi +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.in; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + case "$1" in -h|--h|--he|--hel|--help) @@ -58,10 +66,10 @@ exit 1 ;; - aclocal) + aclocal*) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`acinclude.m4' or \`configure.in'. You might want + you modified \`acinclude.m4' or \`$configure_ac'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 @@ -70,7 +78,7 @@ autoconf) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`configure.in'. You might want to install the + you modified \`$configure_ac'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure @@ -79,10 +87,10 @@ autoheader) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`acconfig.h' or \`configure.in'. You might want + you modified \`acconfig.h' or \`$configure_ac'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." - files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in` + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' $configure_ac` test -z "$files" && files="config.h" touch_files= for f in $files; do @@ -95,10 +103,10 @@ touch $touch_files ;; - automake) + automake*) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if - you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'. + you modified \`Makefile.am', \`acinclude.m4' or \`$configure_ac'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | --- ax25-tools-0.0.8.orig/mkinstalldirs +++ ax25-tools-0.0.8/mkinstalldirs @@ -4,7 +4,7 @@ # Created: 1993-05-16 # Public domain -# $Id: mkinstalldirs,v 1.1.1.1 2001/04/10 02:04:14 csmall Exp $ +# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ errstatus=0 --- ax25-tools-0.0.8.orig/ax25/axspawn.c +++ ax25-tools-0.0.8/ax25/axspawn.c @@ -123,6 +123,7 @@ #include #include #include +#include #include #include #include --- ax25-tools-0.0.8.orig/hdlcutil/Makefile.am +++ ax25-tools-0.0.8/hdlcutil/Makefile.am @@ -3,7 +3,7 @@ X11_bin_programs = smdiag endif -SUBDIRS = fl +SUBDIRS = . fl bin_PROGRAMS = sethdlc smmixer $(X11_bin_programs) --- ax25-tools-0.0.8.orig/hdlcutil/hdrvcomm.h +++ ax25-tools-0.0.8/hdlcutil/hdrvcomm.h @@ -42,7 +42,7 @@ #ifdef HDRVC_KERNEL #include -#include +#include "soundmodem.h" #include #endif /* HDRVC_KERNEL */ --- ax25-tools-0.0.8.orig/hdlcutil/fl/Makefile.am +++ ax25-tools-0.0.8/hdlcutil/fl/Makefile.am @@ -13,3 +13,4 @@ xfsmdiag_SOURCES = xfsmdiag.cxx xfsmdiag_main.cxx xfsmdiag.h xfsmdiag_main.h hdrvcomm.o: ../hdrvcomm.o + cp -f $< $@ --- ax25-tools-0.0.8.orig/hdlcutil/soundmodem.h +++ ax25-tools-0.0.8/hdlcutil/soundmodem.h @@ -0,0 +1,90 @@ +/* + * The Linux soundcard driver for 1200 baud and 9600 baud packet radio + * (C) 1996-1998 by Thomas Sailer, HB9JNX/AE4WA + */ + +#ifndef _SOUNDMODEM_H +#define _SOUNDMODEM_H + +/* -------------------------------------------------------------------- */ +/* + * structs for the IOCTL commands + */ + +struct sm_debug_data { + unsigned int int_rate; + unsigned int mod_cycles; + unsigned int demod_cycles; + unsigned int dma_residue; +}; + +struct sm_diag_data { + unsigned int mode; + unsigned int flags; + unsigned int samplesperbit; + unsigned int datalen; + short *data; +}; + +struct sm_mixer_data { + unsigned int mixer_type; + unsigned int sample_rate; + unsigned int bit_rate; + unsigned int reg; + unsigned int data; +}; + +struct sm_config { + int hardware; + int mode; +}; + +struct sm_ioctl { + int cmd; + union { + struct sm_config cfg; + struct sm_diag_data diag; + struct sm_mixer_data mix; + struct sm_debug_data dbg; + } data; +}; + +/* -------------------------------------------------------------------- */ + +/* + * diagnose modes + */ +#define SM_DIAGMODE_OFF 0 +#define SM_DIAGMODE_INPUT 1 +#define SM_DIAGMODE_DEMOD 2 +#define SM_DIAGMODE_CONSTELLATION 3 + +/* + * diagnose flags + */ +#define SM_DIAGFLAG_DCDGATE (1<<0) +#define SM_DIAGFLAG_VALID (1<<1) + +/* + * mixer types + */ +#define SM_MIXER_INVALID 0 +#define SM_MIXER_AD1848 0x10 +#define SM_MIXER_CRYSTAL 0x11 +#define SM_MIXER_CT1335 0x20 +#define SM_MIXER_CT1345 0x21 +#define SM_MIXER_CT1745 0x22 + +/* + * ioctl values + */ +#define SMCTL_DIAGNOSE 0x82 +#define SMCTL_GETMIXER 0x83 +#define SMCTL_SETMIXER 0x84 +#define SMCTL_GETDEBUG 0x85 + +/* -------------------------------------------------------------------- */ + +#endif /* _SOUNDMODEM_H */ + +/* --------------------------------------------------------------------- */ --- ax25-tools-0.0.8.orig/kiss/kissnetd.c +++ ax25-tools-0.0.8/kiss/kissnetd.c @@ -104,7 +104,7 @@ PortList[PortNumber]->Fd = open(PortList[PortNumber]->Name, O_RDWR | O_NONBLOCK); if (PortList[PortNumber]->Fd < 0) { syslog(LOG_WARNING, "kissnetd : Error opening port %s : %s\n", - PortList[PortNumber]->Name, sys_errlist[errno]); + PortList[PortNumber]->Name, strerror(errno)); if (VerboseMode) { sprintf(MyString, "cannot reopen %s", PortList[PortNumber]->Name); perror(MyString); @@ -160,7 +160,7 @@ if (!Length) return; if (Length < 0) { syslog(LOG_WARNING, "kissnetd : Error reading port %s : %s\n", - PortList[PortNumber]->Name, sys_errlist[errno]); + PortList[PortNumber]->Name, strerror(errno)); if (VerboseMode) perror("read"); close(MyPort->Fd); MyPort->Fd = -1; --- ax25-tools-0.0.8.orig/tcpip/ttylinkd.c +++ ax25-tools-0.0.8/tcpip/ttylinkd.c @@ -657,9 +657,9 @@ timeout.tv_usec = 0; if (select(32, &fdvar, NULL, NULL, &timeout) == 0) { - if (ioctl(STDIN_FILENO, FIONREAD, (struct sgttyb *)&i) < 0) + if (ioctl(STDIN_FILENO, FIONREAD, &i) < 0) return; - if (ioctl(skt, FIONREAD, (struct sgttyb*)&i) < 0) + if (ioctl(skt, FIONREAD, &i) < 0) return; } --- ax25-tools-0.0.8.orig/debian/rules +++ ax25-tools-0.0.8/debian/rules @@ -0,0 +1,81 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatibility version to use. +export DH_COMPAT=4 + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + aclocal + autoconf + autoheader + automake --gnu --add-missing --copy + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --mandir=/usr/share/man + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + # Clean autogenerated files, so they don't clutter up the + # .diff.gz file. + -rm -f depcomp configure config.h.in aclocal.m4 stamp-h acconfig.h config.guess config.sub config.status config.log + find . -name Makefile.in -print | xargs --no-run-if-empty rm -f + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/ + $(MAKE) install DESTDIR=$(CURDIR)/debian/ax25-tools + $(MAKE) installconf DESTDIR=$(CURDIR)/debian/ax25-tools + dh_movefiles --sourcedir=debian/ax25-tools -pax25-xtools + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + rm debian/ax25-tools/usr/share/doc/ax25-tools/INSTALL + + dh_installexamples + dh_installmenu + dh_installcron +# dh_installmanpages + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- ax25-tools-0.0.8.orig/debian/control +++ ax25-tools-0.0.8/debian/control @@ -0,0 +1,29 @@ +Source: ax25-tools +Section: hamradio +Priority: extra +Maintainer: Debian Hamradio Maintainers +Uploaders: Jaime Robles , Joop Stakenborg , Patrick Ouellette , Hamish Moffatt , Ramakrishnan Muthukrishnan +Build-Depends: autoconf, automake, debhelper (>> 4) , libncurses5-dev, zlib1g-dev, libfltk1.1-dev (>= 1.1.2-2), libgl1-mesa-dev | libgl-dev, libxi-dev, libxext-dev, libx11-dev, libax25-dev +Standards-Version: 3.6.2 + +Package: ax25-tools +Architecture: any +Depends: ${shlibs:Depends} +Conflicts: ax25-utils +Replaces: ax25-utils +Suggests: talkd, ax25-apps +Description: tools for AX.25 interface configuration + These are hamradio specific tools for setting up and configuring hamradio + ports that use AX.25 Net/ROM or ROSE network protocols. + +Package: ax25-xtools +Architecture: any +Depends: ${shlibs:Depends} +Conflicts: ax25-utils +Suggests: talkd, ax25-apps, ax25-tools +Description: tools for AX.25 interface configuration -- X11-based + These are hamradio specific tools for setting up and configuring hamradio + ports that use AX.25 Net/ROM or ROSE network protocols. + . + This package is created separately for those who do not want to install tools + that need X to run. --- ax25-tools-0.0.8.orig/debian/ax25-tools.dirs +++ ax25-tools-0.0.8/debian/ax25-tools.dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- ax25-tools-0.0.8.orig/debian/ax25-tools.docs +++ ax25-tools-0.0.8/debian/ax25-tools.docs @@ -0,0 +1,3 @@ +INSTALL +NEWS +README --- ax25-tools-0.0.8.orig/debian/ax25-xtools.undocumented +++ ax25-tools-0.0.8/debian/ax25-xtools.undocumented @@ -0,0 +1,4 @@ +xfhdlcchpar.8 +xfhdlcst.8 +xfsmdiag.8 +xfsmmixer.8 --- ax25-tools-0.0.8.orig/debian/copyright +++ ax25-tools-0.0.8/debian/copyright @@ -0,0 +1,9 @@ +This package was debianized by Craig Small on +Fri, 4 Jun 1999 14:28:59 +1000. + +Original source may me found at ax25.sf.net + +Copyright: GPL + +A copy of the GPL can be found in /usr/share/common-licenses/GPL + --- ax25-tools-0.0.8.orig/debian/init.d +++ ax25-tools-0.0.8/debian/init.d @@ -0,0 +1,116 @@ +#! /bin/sh +# +# skeleton example file to build /etc/init.d/ scripts. +# This file should be used to construct scripts for /etc/init.d. +# +# Written by Miquel van Smoorenburg . +# Modified for Debian GNU/Linux +# by Ian Murdock . +# +# Version: @(#)skeleton 1.8 03-Mar-1998 miquels@cistron.nl +# +# This file was automatically customized by dh-make on Fri, 4 Jun 1999 14:28:59 +1000 + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin + + +set -e + +case "$1" in + start) + echo -n "Starting ax25-tools: " + start-stop-daemon --start --quiet --pidfile /var/run/mheardd.pid \ + --exec /usr/sbin/mheardd + echo -n " mheardd" + start-stop-daemon --start --quiet --pidfile /var/run/ax25d.pid \ + --exec /usr/sbin/ax25d + echo -n " ax25d" + if [ -f /proc/net/nr ] + then + start-stop-daemon --start --quiet --pidfile /var/run/netromd \ + --exec /usr/sbin/netromd + echo "." + if [ -f /var/ax25/nodesave.data ] + then + echo -n "Restoring saved netrom nodes" + . /var/ax25/nodesave.data + rm -f /var/ax25/nodesave.data + echo "." + fi + else + echo "." + fi + ;; + stop) + echo -n "Stopping ax25-tools: " + start-stop-daemon --stop --quiet --pidfile /var/run/mheardd.pid \ + --exec /usr/sbin/mheardd + echo -n " mheardd" + start-stop-daemon --stop --quiet --pidfile /var/run/ax25d.pid \ + --exec /usr/sbin/ax25d + echo -n " ax25d" + if [ -f /proc/net/nr ] + then + start-stop-daemon --stop --quiet --pidfile /var/run/netromd \ + --exec /usr/sbin/netromd + echo " netromd." + echo -n "Saving netrom nodes" + /usr/sbin/nodesave /var/ax25/nodesave.data + echo "." + else + echo "." + fi + ;; + #reload) + # + # If the daemon can reload its config files on the fly + # for example by sending it SIGHUP, do it here. + # + # If the daemon responds to changes in its config file + # directly anyway, make this a do-nothing entry. + # + # echo "Reloading $DESC configuration files." + # start-stop-daemon --stop --signal 1 --quiet --pidfile \ + # /var/run/$NAME.pid --exec $DAEMON + #;; + restart|force-reload) + # + # If the "reload" option is implemented, move the "force-reload" + # option to the "reload" entry above. If not, "force-reload" is + # just the same as "restart". + # + echo -n "Restarting ax25-tools: " + start-stop-daemon --stop --quiet --pidfile /var/run/mheardd.pid \ + --exec /usr/sbin/mheardd + start-stop-daemon --stop --quiet --pidfile /var/run/ax25d.pid \ + --exec /usr/sbin/ax25d + if [ -f /proc/net/nr ] + then + start-stop-daemon --stop --quiet --pidfile /var/run/netromd \ + --exec /usr/sbin/netromd + fi + sleep 1 + start-stop-daemon --start --quiet --pidfile /var/run/mheardd.pid \ + --exec /usr/sbin/mheardd + echo -n " mheardd" + start-stop-daemon --start --quiet --pidfile /var/run/ax25d.pid \ + --exec /usr/sbin/ax25d + echo -n " ax25d" + if [ -f /proc/net/nr ] + then + start-stop-daemon --start --quiet --pidfile /var/run/netromd \ + --exec /usr/sbin/netromd + echo "netromd." + else + echo "." + fi + ;; + *) + N=/etc/init.d/ax25-tools + # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $N {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 --- ax25-tools-0.0.8.orig/debian/changelog +++ ax25-tools-0.0.8/debian/changelog @@ -0,0 +1,168 @@ +ax25-tools (0.0.8-10ubuntu1) dapper; urgency=low + + * Resynchronise with Debian. + + -- Daniel T Chen Mon, 09 Jan 2006 12:46:03 +0000 + +ax25-tools (0.0.8-10) unstable; urgency=low + + * Change build-dep on xlibs-dev to individual libraries + + -- Hamish Moffatt Sun, 8 Jan 2006 14:06:40 +1100 + +ax25-tools (0.0.8-9ubuntu1) dapper; urgency=low + + * Resynchronise with Debian + * Changed GL build depends to libgl1-mesa-dev | libgl-dev + + -- Benjamin Montgomery Tue, 15 Nov 2005 15:13:41 -0600 + +ax25-tools (0.0.8-9) unstable; urgency=low + + * Rebuild against libfltk1.1 (rather than libfltk1.1c102) + * Update standards-revision to 3.6.2 + * Update to debhelper 4 + * Rewrite short descriptions in debian/control + + -- Hamish Moffatt Sat, 10 Sep 2005 23:28:08 +0000 + +ax25-tools (0.0.8-8) unstable; urgency=low + + * Change localstatedir to '/var', so node can find mheard.dat. + + -- Joop Stakenborg Mon, 11 Jul 2005 21:30:11 +0200 + +ax25-tools (0.0.8-7ubuntu1) breezy; urgency=low + + * Fixed build-deps for GL/GLU transition. + + -- Michiel Sikkes Sun, 28 Aug 2005 20:53:13 +0200 + +ax25-tools (0.0.8-7build1) breezy; urgency=low + + * Rebuild for new C++ ABI + + -- Matthias Klose Tue, 7 Jun 2005 14:18:52 +0000 + +ax25-tools (0.0.8-7) unstable; urgency=low + + * Changed maintainer to debian-hams@lists.debian.org + * Changed uploaders to Jaime Robles , + Joop Stakenborg , + Patrick Ouellette , + Hamish Moffatt , + Ramakrishnan Muthukrishnan + * Fixed lintian warnings about copyright file reference + * Added reference to original source (a25.sf.net) to copyright file + + -- Patrick Ouellette Thu, 14 Apr 2005 14:03:24 -0400 + +ax25-tools (0.0.8-6) unstable; urgency=low + + * Accepting/closing prior NMU fixes. Fixed typo in last changelog + * causing it to appear to be an NMU. Priority change to 'extra' + * to match overrides. Closes: #170116, #200997, #229303 + + -- Bruce Walker Tue, 2 Mar 2004 11:06:15 -0500 + +ax25-tools (0.0.8-5) unstable; urgency=low + + * Moved soundmodem.h into source; no longer in kernel sources + * (patch from neroden@twcny.rr.com) Closes: #229303 + + -- Bruce Walker Tue, 2 Mar 2004 10:01:06 -0500 + +ax25-tools (0.0.8-4.1) unstable; urgency=low + + * Non-maintainer upload. BSP. + * Recompile in order to solve dependency problems. Closes: #200997 + * Fix autoconf/compiler warnings. + + -- Guus Sliepen Tue, 26 Aug 2003 21:51:26 +0200 + +ax25-tools (0.0.8-4) unstable; urgency=low + + * linked with libax25-0.0.11 + + -- Bruce Walker Wed, 23 Apr 2003 16:58:47 -0400 + +ax25-tools (0.0.8-3) unstable; urgency=low + + * new debian maintainer (me) + * loosen dependency: automake1.7 --> automake + + -- Bruce Walker Tue, 8 Apr 2003 16:11:55 -0400 + +ax25-tools (0.0.8-2.1) unstable; urgency=low + + * NMU + * Updated xlib6g-dev to xlibs-dev in Build-Depends. Closes: #170116. + * Updated to libfltk1.1-dev to allow compilation with g++ 3.2. + * Several autoconf/automake updates needed. + + -- Daniel Schepler Fri, 14 Mar 2003 22:07:57 -0800 + +ax25-tools (0.0.8-2) unstable; urgency=low + + * added /etc/ax25/nrbroadcast to conffiles (closes: #97453) + * updated build depends (closes: #101419) + * added autoconf to build depends + + -- Patrick Ouellette Sat, 22 Dec 2001 23:07:26 -0500 + +ax25-tools (0.0.8-1) unstable; urgency=low + + * New upstream release + * New maintainer (closes: #89331) + + -- Patrick Ouellette Thu, 24 May 2001 22:19:55 -0500 + +ax25-tools (0.0.6-2) frozen unstable; urgency=low + + * fixed build-depends: closes: #82258 + + -- Craig Small Tue, 27 Feb 2001 16:14:37 +1100 + +ax25-tools (0.0.6-1) frozen unstable; urgency=low + + * New upstream source + * Upped standards version and have build-depends Closes: #70175 + * ttylink.8 fixed in upstream Closes: #53583 + * rip98.conf -> rip98d.conf Closes: #53654 + * var directory is now /var/lib/ax25 + + -- Craig Small Thu, 26 Oct 2000 09:17:36 +1100 + +ax25-tools (0.0.5-2) frozen unstable; urgency=low + + * Added some tests to fix i386isms Closes: #55552 + + -- Craig Small Thu, 20 Jan 2000 16:09:10 +1100 + +ax25-tools (0.0.5-1) unstable; urgency=low + + * New upstream version + + -- Craig Small Mon, 23 Aug 1999 12:52:14 +1000 + +ax25-tools (0.0.4-1) unstable; urgency=low + + * New upstream version Closes: #41832 + + -- Craig Small Tue, 10 Aug 1999 12:11:57 +1000 + +ax25-tools (0.0.3-1) unstable; urgency=low + + * New upstream version + + -- Craig Small Thu, 8 Jul 1999 14:03:17 +1000 + +ax25-tools (0.0.2-1) unstable; urgency=low + + * Initial Release. + + -- Craig Small Fri, 4 Jun 1999 14:28:59 +1000 + +Local variables: +mode: debian-changelog +End: --- ax25-tools-0.0.8.orig/debian/ax25-xtools.files +++ ax25-tools-0.0.8/debian/ax25-xtools.files @@ -0,0 +1,6 @@ +usr/sbin/xfhdlcchpar +usr/sbin/xfhdlcst +usr/sbin/xfsmdiag +usr/sbin/xfsmmixer +usr/bin/smdiag +usr/share/man/man8/smdiag.8