improvements
authorBdale Garbee <bdale@gag.com>
Mon, 2 Jul 2012 21:36:51 +0000 (15:36 -0600)
committerBdale Garbee <bdale@gag.com>
Mon, 2 Jul 2012 21:36:51 +0000 (15:36 -0600)
debian/changelog
debian/control
debian/init.d

index 01a0a83eea9d96fa15ca94e917d7e7ed6f3fdf7c..2d5846e5b2543be403067bfc963f4e55ae39da00 100644 (file)
@@ -1,6 +1,8 @@
 gcpegg (5.1-12.64) UNRELEASED; urgency=low
 
   * merge 64-bit fixes from Fernando Lucas Rodriguez <fernando_lr@terra.es>
+  * revise dependency to be kbd | console-tools to ease backport support
+  * unqualify openvt path in init.d to tolerate /bin vs /usr/bin
 
  -- Bdale Garbee <bdale@gag.com>  Mon, 02 Jul 2012 14:59:55 -0600
 
index fd898e606710080a70d394eb68191fb0d78569dd..e0d052543b79399e9e8f625cf67f0a21bd64a1b0 100644 (file)
@@ -9,7 +9,7 @@ Vcs-Browser: http://git.gag.com/?p=debian/gcpegg
 
 Package: gcpegg
 Architecture: linux-any
-Depends: ${shlibs:Depends}, ${misc:Depends}, kbd
+Depends: ${shlibs:Depends}, ${misc:Depends}, kbd | console-tools
 Description: Global Consciousness Project EGG Software
  The GCP studies data from random event generators in widely distributed
  locations, to discern non-random patterns that may result from the
index b04ffb0cc6998ac6ba8680e822a8305499b1b43b..6e9a55ae15f25bcd7686195772f3f1f469c85f65 100644 (file)
@@ -19,7 +19,7 @@ cd /var/spool/gcpegg
 case "$1" in
   start)
        echo -n "Starting GCP EGG software on virtual terminal 8: eggsh"
-       /usr/bin/openvt -f -c 8 /usr/sbin/eggsh
+       openvt -f -c 8 /usr/sbin/eggsh
        echo "."
        ;;
   stop)
@@ -30,7 +30,7 @@ case "$1" in
   reload|force-reload|restart)
        echo -n "Restarting GCP EGG software on virtual terminal 8..."
        start-stop-daemon --stop --quiet --oknodo --exec /usr/sbin/eggsh
-       /usr/bin/openvt -f -c 8 /usr/sbin/eggsh
+       openvt -f -c 8 /usr/sbin/eggsh
        echo "done."
        ;;
   purge)