From: Bdale Garbee Date: Mon, 2 Jul 2012 21:36:51 +0000 (-0600) Subject: improvements X-Git-Tag: debian/5.1-13~7 X-Git-Url: https://git.gag.com/?p=debian%2Fgcpegg;a=commitdiff_plain;h=e38c56e260d138656cd2867b5c583e7d574bf007 improvements --- diff --git a/debian/changelog b/debian/changelog index 01a0a83..2d5846e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ gcpegg (5.1-12.64) UNRELEASED; urgency=low * merge 64-bit fixes from Fernando Lucas Rodriguez + * 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 Mon, 02 Jul 2012 14:59:55 -0600 diff --git a/debian/control b/debian/control index fd898e6..e0d0525 100644 --- a/debian/control +++ b/debian/control @@ -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 diff --git a/debian/init.d b/debian/init.d index b04ffb0..6e9a55a 100644 --- a/debian/init.d +++ b/debian/init.d @@ -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)