1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
diff -ruN portslave-woody/debian/conffiles portslave-potato/debian/conffiles
--- portslave-woody/debian/conffiles Thu Jan 1 01:00:00 1970
+++ portslave-potato/debian/conffiles Sat Dec 15 07:51:31 2001
@@ -0,0 +1 @@
+/etc/portslave/pslave.conf
diff -ruN portslave-woody/debian/control portslave-potato/debian/control
--- portslave-woody/debian/control Tue Dec 11 11:36:01 2001
+++ portslave-potato/debian/control Sat Dec 15 07:53:55 2001
@@ -7,7 +7,7 @@
Package: portslave
Architecture: any
-Depends: ${shlibs:Depends}, ppp (= 2.4.1.uus-4)
+Depends: ${shlibs:Depends}
Description: Terminal server that does PPP and authenticates via RADIUS
This package provides a program named portslave which will use AT commands
to answer a modem when it rings. It will then display a login: prompt at
diff -ruN portslave-woody/debian/rules portslave-potato/debian/rules
--- portslave-woody/debian/rules Sat Dec 15 07:31:52 2001
+++ portslave-potato/debian/rules Sat Dec 15 08:03:34 2001
@@ -6,17 +6,15 @@
#export DH_VERBOSE=1
# This is the debhelper compatability version to use.
-export DH_COMPAT=3
+export DH_COMPAT=2
export PKGDIR=`pwd`/debian/portslave
configure: configure-stamp
configure-stamp:
dh_testdir
# Add here commands to configure the package.
- ./configure --prefix=/usr --mandir=/usr/share/man --with-pppdir=ppp-2.4.1 --sysconfdir=/etc/portslave --with-pppdradius=/usr/sbin/pppd --enable-ipv6 --enable-shadow
+ ./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc/portslave --enable-shadow
rm -rf ppp-2.4.1
- mkdir -p ppp-2.4.1/pppd
- cp debian/ppp-2.4.1-headers/* ppp-2.4.1/pppd
touch configure-stamp
@@ -47,7 +45,7 @@
dh_installdirs
# Add here commands to install the package into debian/tmp.
- $(MAKE) deb-install INST_PREFIX=$(PKGDIR)
+ $(MAKE) install INST_PREFIX=$(PKGDIR)
mv $(PKGDIR)/etc/portslave/pslave.conf.sample $(PKGDIR)/etc/portslave/pslave.conf
mkdir -p $(PKGDIR)/usr/share/lintian/overrides
cp debian/lintian $(PKGDIR)/usr/share/lintian/overrides/portslave
|