mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
[lcd4linux @ 2006-09-04 16:41:21 by siretart]
removing debianisation from upstream source, as discussed with Michael on private mail. Rationale: I try to keep an updated lcd4linux in debian/sid. If you need the debinisation, please use my packages as base. If you want more updated package, please drop me a note, and I'll arrange another upload to unstable (or experimental, depending on the state of the cvs). git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@704 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
This commit is contained in:
Vendored
-6
@@ -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
|
||||
|
||||
Vendored
-1
@@ -1 +0,0 @@
|
||||
4
|
||||
Vendored
-7
@@ -1,7 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
# Source debconf library.
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
db_input high lcd4linux/conf
|
||||
db_go
|
||||
Vendored
-16
@@ -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.
|
||||
Vendored
-39
@@ -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'.
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
usr/bin
|
||||
usr/lib
|
||||
etc
|
||||
etc/init.d
|
||||
Vendored
-9
@@ -1,9 +0,0 @@
|
||||
FAQ
|
||||
NEWS
|
||||
README
|
||||
README.Drivers
|
||||
README.KDE
|
||||
README.Rows
|
||||
README.Tokens
|
||||
TODO
|
||||
lcd4linux.conf.sample
|
||||
Vendored
-47
@@ -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
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
#DEBHELPER#
|
||||
Vendored
-86
@@ -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
|
||||
Vendored
-7
@@ -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
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
version=2
|
||||
http://prdownloads.sourceforge.net/lcd4linux/lcd4linux-(.*[0-9])\.tgz debian uupdate
|
||||
Reference in New Issue
Block a user