diff options
author | Reinhard Tartler <siretart@tauware.de> | 2006-08-26 11:17:32 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2006-08-26 11:17:32 +0200 |
commit | f7a3ca2c72b35576170b3dec6afc6c887dca4bca (patch) | |
tree | 61fcf6dbce9d52416b528011e72866958b1e2acd | |
parent | 206290a8a1c8fcc9514d55ced20273b2740095c8 (diff) | |
download | lcd4linux-f7a3ca2c72b35576170b3dec6afc6c887dca4bca.tar.gz |
remove old debinisation
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rwxr-xr-x | debian/config | 7 | ||||
-rw-r--r-- | debian/control | 16 | ||||
-rw-r--r-- | debian/copyright | 39 | ||||
-rw-r--r-- | debian/dirs | 4 | ||||
-rw-r--r-- | debian/docs | 9 | ||||
-rw-r--r-- | debian/init.d | 47 | ||||
-rw-r--r-- | debian/postinst | 5 | ||||
-rwxr-xr-x | debian/rules | 86 | ||||
-rw-r--r-- | debian/templates | 7 | ||||
-rw-r--r-- | debian/watch | 2 |
12 files changed, 0 insertions, 229 deletions
diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index ab55325..0000000 --- a/debian/changelog +++ /dev/null @@ -1,6 +0,0 @@ -lcd4linux (0.9.11-1) unstable; urgency=low - - * Initial Release. - - -- Samuel Mimram <samuel.mimram@ens-lyon.org> Wed, 10 Dec 2003 11:48:10 +0100 - diff --git a/debian/compat b/debian/compat deleted file mode 100644 index b8626c4..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/debian/config b/debian/config deleted file mode 100755 index d84a76e..0000000 --- a/debian/config +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -e - -# Source debconf library. -. /usr/share/debconf/confmodule - -db_input high lcd4linux/conf -db_go diff --git a/debian/control b/debian/control deleted file mode 100644 index 2df0149..0000000 --- a/debian/control +++ /dev/null @@ -1,16 +0,0 @@ -Source: lcd4linux -Section: utils -Priority: extra -Maintainer: Samuel Mimram <samuel.mimram@ens-lyon.org> -Build-Depends: debhelper (>= 4.0.0), xlibs-dev -Standards-Version: 3.6.0 - -Package: lcd4linux -Architecture: any -Depends: xlibs, ${shlibs:Depends} -Description: Display informations on an external liquid crystal display - Grab informations from the kernel and some subsystems and display it on an - external liquid crystal display. - . - The use of special sequences (tokens) gives you full control of the layout, - and therefore lcd4linux is completely independent from the display size. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 4202cf9..0000000 --- a/debian/copyright +++ /dev/null @@ -1,39 +0,0 @@ -This package was debianized by Samuel Mimram <samuel.mimram@ens-lyon.org> on -Wed, 10 Dec 2003 11:48:10 +0100. - -It was downloaded from http://lcd4linux.sourceforge.net/ - -Upstream Author: Michael Reinelt <reinelt@eunet.at> - -Copyright: 1992, 1999-2004 -The LCD4Linux Development Team <lcd4linux-devel@lists.sourceforge.net> -Michael Reinelt <reinelt@eunet.at> -Herbert Rosmanith <herp@wildsau.idv.uni-linz.ac.at> -Leopold Tötsch <lt@toetsch.at> -Axel Ehnert <axel@ehnert.net> -Andrew Ip <aip@cwlinux.com> -Robin Adams, Adams IT Services <info@usblcd.de> -Xavier Vello <xavier66@free.fr> -Martin Hejl (martin@hejl.de) -Jesse Brook Kovach <jkovach@wam.umd.edu> -Nico Wallmeier <nico.wallmeier@post.rwth-aachen.de> -Luis Correia <lfcorreia@users.sf.net> -Patrick Schemitz <schemitz@ekp.physik.uni-karlsruhe.de> -Andy Baxter <andy@earthsong.free-online.co.uk> -Thomas Siedentopf <thom-s@gmx.net> -Markus Keil <markus_keil@t-online.de> -Samuel Mimram <samuel.mimram@ens-lyon.fr> -Mark Morley <morley@Camosun.BC.CA> - - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 dated June, 1991. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in '/usr/share/common-licenses/GPL'. diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index d1dc25f..0000000 --- a/debian/dirs +++ /dev/null @@ -1,4 +0,0 @@ -usr/bin -usr/lib -etc -etc/init.d diff --git a/debian/docs b/debian/docs deleted file mode 100644 index ff25d8a..0000000 --- a/debian/docs +++ /dev/null @@ -1,9 +0,0 @@ -FAQ -NEWS -README -README.Drivers -README.KDE -README.Rows -README.Tokens -TODO -lcd4linux.conf.sample diff --git a/debian/init.d b/debian/init.d deleted file mode 100644 index 207e038..0000000 --- a/debian/init.d +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/sh -# -# lcd4linux -# -PATH=/sbin:/bin:/usr/sbin:/usr/bin -DAEMON=/usr/bin/lcd4linux -NAME=lcd4linux -DESC=lcd4linux - -test -f $DAEMON || exit 0 - -set -e - -case "$1" in - start) - echo -n "Starting $DESC: " - start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \ - --exec $DAEMON - echo "$NAME." - ;; - stop) - echo -n "Stopping $DESC: " - start-stop-daemon --oknodo --stop --quiet --pidfile /var/run/$NAME.pid \ - --exec $DAEMON - echo "$NAME." - ;; - reload) - start-stop-daemon --stop --signal 1 --quiet --pidfile \ - /var/run/$NAME.pid --exec $DAEMON - ;; - restart|force-reload) - echo -n "Restarting $DESC: " - start-stop-daemon --stop --quiet --pidfile \ - /var/run/$NAME.pid --exec $DAEMON - sleep 1 - start-stop-daemon --start --quiet --pidfile \ - /var/run/$NAME.pid --exec $DAEMON - echo "$NAME." - ;; - *) - N=/etc/init.d/$NAME - echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 284d07d..0000000 --- a/debian/postinst +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -e - -. /usr/share/debconf/confmodule - -#DEBHELPER# diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 4edc889..0000000 --- a/debian/rules +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -DESTDIR=$(CURDIR)/debian/lcd4linux - -# These are used for cross-compiling and for saving the configure script -# from having to guess our platform (since we know it already) -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) - - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) - INSTALL_PROGRAM += -s -endif - -config.status: configure - dh_testdir - CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr - -build: build-stamp - -build-stamp: config.status - dh_testdir - $(MAKE) - #/usr/bin/docbook-to-man debian/lcd4linux.sgml > lcd4linux.1 - touch build-stamp - -clean: - dh_testdir - dh_testroot - - rm -f build-stamp - -$(MAKE) distclean - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - $(MAKE) install DESTDIR=$(DESTDIR) - mkdir -p $(DESTDIR)/etc - cp lcd4linux.conf.sample $(DESTDIR)/etc/lcd4linux.conf - -# 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_installchangelogs ChangeLog - dh_installdocs -# dh_installexamples - dh_install - dh_installdebconf - dh_installinit -# dh_installman - 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 diff --git a/debian/templates b/debian/templates deleted file mode 100644 index 239b075..0000000 --- a/debian/templates +++ /dev/null @@ -1,7 +0,0 @@ -Template: lcd4linux/conf -Type: note -Description: You must configure lcd4linux - By default, lcd4linux is not configured. You MUST configure it by editing - the /etc/lcd4linux.conf file, which holds all configuration. - . - Then, restart lcd4linux with /etc/init.d/lcd4linux restart diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 932ab07..0000000 --- a/debian/watch +++ /dev/null @@ -1,2 +0,0 @@ -version=2 -http://prdownloads.sourceforge.net/lcd4linux/lcd4linux-(.*[0-9])\.tgz debian uupdate |