--- osdsh-0.7.0.orig/src/config.h +++ osdsh-0.7.0/src/config.h @@ -11,5 +11,5 @@ #define OSD_FIFO_PATH "/tmp/osdsh" #define PPP_DEVICE "ppp0" #define PPP_PID_PATH "/var/run" -#define PLUGINSDIR "/usr/local/lib/osdsh" +#define PLUGINSDIR "/usr/lib/osdsh" #define MAX_PLUGINS 20 --- osdsh-0.7.0.orig/src/osdctl/Makefile +++ osdsh-0.7.0/src/osdctl/Makefile @@ -13,5 +13,5 @@ gcc $(LIBDIR) $(LIBS) $(CFLAGS) -o $@ $@.c clean: - rm osdctl + rm -f osdctl --- osdsh-0.7.0.orig/src/osdsh/Makefile +++ osdsh-0.7.0/src/osdsh/Makefile @@ -18,18 +18,18 @@ %.o: %.c - gcc -c $< + gcc -fPIC -c $< osdsh: $(OBJS) gcc -c $(CFLAGS) $@.c gcc $(CFLAGS) -o $@ osdsh.o $(OBJS) $(LIBS) –ldl clean: libclean - rm osdsh - rm *.o + rm -f osdsh + rm -f *.o libclean: - rm libosdsh*.so + rm -f libosdsh*.so libosdshclock.so: gcc -fPIC -c clockdisplay.c --- osdsh-0.7.0.orig/debian/changelog +++ osdsh-0.7.0/debian/changelog @@ -0,0 +1,52 @@ +osdsh (0.7.0-5ubuntu1) hoary; urgency=low + + * Rebuilt to get libxinerama_pic out. + + -- Daniel Holbach Tue, 22 Mar 2005 00:03:56 +0100 + +osdsh (0.7.0-5) unstable; urgency=low + + * Closes: #274245: -a: invalid option, thx to Thomas Themel + * Quoted strings in menu file to make lintian happy + + -- Joachim Breitner Thu, 30 Sep 2004 20:02:19 +0200 + +osdsh (0.7.0-4) unstable; urgency=low + + * bumped standards version to 3.6.1 (no changes) + * Fix copyright file according to weasels's suggestion + + -- Joachim Breitner Mon, 15 Dec 2003 18:27:48 +0100 + +osdsh (0.7.0-3) unstable; urgency=low + + * Started using dpatch + * Integrated Derek Lewis' outline patch + + -- Joachim Breitner Mon, 8 Dec 2003 19:38:39 +0100 + +osdsh (0.7.0-2) unstable; urgency=low + + * Build with -fPIC (Closes: Bug#22062) + + -- Joachim Breitner Fri, 14 Nov 2003 16:24:50 +0100 + +osdsh (0.7.0-1) unstable; urgency=low + + * Minor cosmetic Suggestions from debian-mentors + * Initial Upload to the debian archive (Closes: Bug#207940) + + -- Joachim Breitner Wed, 22 Oct 2003 17:10:20 +0200 + +osdsh (0.7.0-0.2) unstable; urgency=low + + * Fixed PLUGINDIR + + -- Joachim Breitner Sun, 31 Aug 2003 15:13:16 +0200 + +osdsh (0.7.0-0.1) unstable; urgency=low + + * Internal Pre-Release + + -- Joachim Breitner Sat, 30 Aug 2003 22:32:25 +0200 + --- osdsh-0.7.0.orig/debian/compat +++ osdsh-0.7.0/debian/compat @@ -0,0 +1 @@ +4 --- osdsh-0.7.0.orig/debian/osdsh.1 +++ osdsh-0.7.0/debian/osdsh.1 @@ -0,0 +1,80 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH OSDSH 1 "August 31, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +osdsh \- Overlays your screen with various system informations +.SH SYNOPSIS +.B osdsh +.RI [ options ] +.SH DESCRIPTION +.B osdsh +is a a little program that overlays system information using +the XOSD library. OSDsh was originally based on osdd but got some +features added, like: +.br + * It is able to display a clock. + * Shows the volume levels of the soundcard whenever they change. + * Tells you if you are on- or off-line, and the time you were connected. + * Shows the battery status and + * shows any message you want it to. +.br +.br +.B osdsh +forks to the background when started and should be started in the user's +session scripts (like ~/.xsession) + +.SH OPTIONS +.TP +.B \-h +Show summary of options. +.TP +.B \-m mixer +Set mixer device. +.SM (Default: /dev/mixer) +.TP +.B \-f font +Set font +.SM (Default: -*-lucidatypewriter-bold-*-*-*-*-240-*-*-*-*-*-*) +.TP +.B \-c color +Set color +.SM (Default: green) +.TP +.B \-d int +Set OSD delay +.SM (Default: 5) +.TP +.B \-o int +Set shadow offset +.SM (Default: 1) +.TP +.B \-p <0|1> +Position of the osd: 0 for bottom, 1 for top. +.SM (Default: 1 (top)) +.TP +.B \-a <0|1|2> +align of the osd: left, center or right +.TP +.B \-n number +set the nice number so osdsh won't eat your cpu + +.SH SEE ALSO +.BR osdctl (1), +.BR osdshconfig (1). +.SH AUTHOR +This manual page was written by Joachim Breitner , +for the Debian project (but may be used by others). --- osdsh-0.7.0.orig/debian/osdshconfig.1 +++ osdsh-0.7.0/debian/osdshconfig.1 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH OSDSHCONFIG 1 "August 31, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +osdshconfig \- Create themefiles for osdsh +.SH SYNOPSIS +.B osdshconfig +.SH DESCRIPTION +This script loads a file containing commands of osdsh that +change the look of it. You can then change the values and save this +changes. You can preview your changes also. This is like a +Theme-maker program, this way you can change the look of osdsh just +running a script and you can have different scripts to match your +preferences for each hour of the day or day of the week. +.PP +To load in the saved theme file, use +.I osdctl -S file. +You might want to add this command to your session script, right after +.I osdsh. + + +.SH SEE ALSO +.BR osdsh (1), +.BR osdctl (1). +.SH AUTHOR +This manual page was written by Joachim Breitner , +for the Debian project (but may be used by others). --- osdsh-0.7.0.orig/debian/dirs +++ osdsh-0.7.0/debian/dirs @@ -0,0 +1 @@ +usr/bin --- osdsh-0.7.0.orig/debian/examples +++ osdsh-0.7.0/debian/examples @@ -0,0 +1 @@ +themes/* --- osdsh-0.7.0.orig/debian/osdctl.1 +++ osdsh-0.7.0/debian/osdctl.1 @@ -0,0 +1,80 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH OSDCTL 1 "August 31, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +osdctl \- Controls osdsh via the command line +.SH SYNOPSIS +.B osdctl +.RI +.SH DESCRIPTION +.B osdctl +is the command line tool to control a running osdsh(1) + +.SH COMMANDS +.TP +.B \-h +Display help +.TP +.B \-s "string" +displays a string +.TP +.B \-b name,val +displays a bar up to val, named "name" +.TP +.B \-l name,val +displays a slider at val, named "name" +.TP +.B \-t int +display the clock for int seconds +.TP +.B \-c <0|1> +(de)activate the osd clock +.TP +.B \-m <0|1> +(de)activate the mixer display +.TP +.B \-p <0|1> +(de)activate the ppp watch feature +.TP +.B \-a <0|1|2> +(de)activate the apm watch feature +.br +1 for not to show percent bar, 2 to show it +.TP +.B \-d interface +set the ppp interface +.SM (Default: ppp0) +.TP +.B \-A int +show battery status for int seconds +.TP +.B \-e """comm args""" +tell osdsh to do "comm" with "args" +.TP +.B \-S scriptfile +execute commands form scriptfile +.TP +.B \-x +tell osdsh to quit + + +.SH SEE ALSO +.BR osdsh (1), +.BR osdshconfig (1). +.SH AUTHOR +This manual page was written by Joachim Breitner , +for the Debian project (but may be used by others). --- osdsh-0.7.0.orig/debian/patches/02-align-flag.dpatch +++ osdsh-0.7.0/debian/patches/02-align-flag.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02-align-flag.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad osdsh-0.7.0/src/osdsh/osdsh.c /tmp/dpep.A1AhFy/osdsh-0.7.0/src/osdsh/osdsh.c +--- osdsh-0.7.0/src/osdsh/osdsh.c 2004-09-30 20:35:01.000000000 +0200 ++++ /tmp/dpep.A1AhFy/osdsh-0.7.0/src/osdsh/osdsh.c 2004-09-30 20:35:07.000000000 +0200 +@@ -65,7 +65,7 @@ + {"align", 1, 0, 'a'}, + {"nice", 1, 0, 'n'} + }; +- while ((c = getopt_long(argc, argv, "hm:f:c:p:d:o:n:", opts, &opt_index)) >= 0) { ++ while ((c = getopt_long(argc, argv, "hm:f:c:p:d:o:a:n:", opts, &opt_index)) >= 0) { + switch (c) { + case 'h': + usage(0, NULL, NULL); --- osdsh-0.7.0.orig/debian/patches/01-outline.dpatch +++ osdsh-0.7.0/debian/patches/01-outline.dpatch @@ -0,0 +1,210 @@ +#!/bin/sh -e +## 01-outline.dpatch by Joachim Breitner +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Adds outline border and color + +if [ $# -ne 1 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi + +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts +patch_opts="${patch_opts:--f --no-backup-if-mismatch}" + +case "$1" in + -patch) patch $patch_opts -p1 < $0;; + -unpatch) patch $patch_opts -p1 -R < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1;; +esac + +exit 0 + +@DPATCH@ +diff -urNad /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/config.h osdsh-0.7.0/src/config.h +--- /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/config.h 2003-12-09 15:25:56.000000000 +0100 ++++ osdsh-0.7.0/src/config.h 2003-12-09 15:25:58.000000000 +0100 +@@ -2,10 +2,12 @@ + #define FONT "-*-lucidatypewriter-bold-*-*-*-*-240-*-*-*-*-*-*" + #define TIMEOUT 5 + #define COLOR "green" ++#define OCOLOR "black" + #define OSD_ALIGNMENT XOSD_left + #define OSD_POSITION XOSD_top + #define MIXER "/dev/mixer" + #define SHADOW_OFFSET 0 ++#define OUTLINE_OFFSET 0 + #define DEFAULT_OFFSET 0 + #define CLOCK_FORMAT "%a %b %e %G - %H : %M : %S" + #define OSD_FIFO_PATH "/tmp/osdsh" +diff -urNad /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/osdsh/osdsh.c osdsh-0.7.0/src/osdsh/osdsh.c +--- /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/osdsh/osdsh.c 2003-12-09 15:25:57.000000000 +0100 ++++ osdsh-0.7.0/src/osdsh/osdsh.c 2003-12-09 15:25:58.000000000 +0100 +@@ -56,9 +56,11 @@ + {"help", 0, 0, 'h'}, + {"position", 1, 0, 'p'}, + {"soffset", 1, 0, 'o'}, ++ {"ooffset", 1, 0, 'O'}, + {"mixer", 1, 0, 'm'}, + {"font", 1, 0, 'f'}, + {"color", 1, 0, 'c'}, ++ {"ocolor", 1, 0, 'k'}, + {"delay", 1, 0, 'd'}, + {"align", 1, 0, 'a'}, + {"nice", 1, 0, 'n'} +@@ -76,6 +78,10 @@ + strncpy(settings->color, optarg, BUFSIZ); + settings->color[BUFSIZ] = '\0'; + break; ++ case 'k': ++ strncpy(settings->ocolor, optarg, BUFSIZ); ++ settings->ocolor[BUFSIZ] = '\0'; ++ break; + case 'p': + settings->position = atoi(optarg); + break; +@@ -94,6 +100,9 @@ + case 'o': + settings->soffset = atoi(optarg); + break; ++ case 'O': ++ settings->ooffset = atoi(optarg); ++ break; + case 'n': + nice(atoi(optarg)); + break; +diff -urNad /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/osdsh/osdsh.h osdsh-0.7.0/src/osdsh/osdsh.h +--- /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/osdsh/osdsh.h 2003-12-09 15:25:57.000000000 +0100 ++++ osdsh-0.7.0/src/osdsh/osdsh.h 2003-12-09 15:25:58.000000000 +0100 +@@ -23,7 +23,9 @@ + xosd *myosd; + char font[BUFSIZ + 1]; + char color[BUFSIZ + 1]; ++ char ocolor[BUFSIZ + 1]; + int soffset; ++ int ooffset; + int xoffset; + int yoffset; + xosd_align align; +diff -urNad /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/osdsh/utils.c osdsh-0.7.0/src/osdsh/utils.c +--- /home/jojo/debian/debs/osdsh/osdsh-0.7.0/src/osdsh/utils.c 2003-12-09 15:25:57.000000000 +0100 ++++ osdsh-0.7.0/src/osdsh/utils.c 2003-12-09 15:25:58.000000000 +0100 +@@ -53,6 +53,16 @@ + if (setts->displaying&&xosd_set_shadow_offset(setts->myosd, setts->soffset)) + fprintf(stderr, "Couldn't change Shadow Offset\n"); + break; ++ case 'O': ++ setts->ooffset = atoi(argument); ++ if (setts->displaying&&xosd_set_outline_offset(setts->myosd, setts->ooffset)) ++ fprintf(stderr, "Couldn't change Outline Width\n"); ++ break; ++ case 'k': ++ strncpy(setts->ocolor, argument, BUFSIZ); ++ if (setts->displaying&&xosd_set_outline_colour(setts->myosd, argument)) ++ fprintf(stderr, "Couldn't change outline color\n"); ++ break; + case 'y': + setts->yoffset = atoi(argument); + if (setts->displaying&&xosd_set_vertical_offset(setts->myosd, setts->yoffset)) +@@ -77,6 +87,8 @@ + xosd_set_horizontal_offset(setts->myosd, setts->xoffset); + xosd_set_vertical_offset(setts->myosd, setts->yoffset); + xosd_set_shadow_offset(setts->myosd, setts->soffset); ++ xosd_set_outline_offset(setts->myosd, setts->ooffset); ++ xosd_set_outline_colour(setts->myosd, setts->ocolor); + xosd_set_timeout(setts->myosd, setts->delay); + } + /* ============================ set_defaults () ============================ */ +@@ -86,7 +98,10 @@ + setts->font[BUFSIZ] = '\0'; + strncpy(setts->color, COLOR, BUFSIZ); + setts->color[BUFSIZ] = '\0'; ++ strncpy(setts->ocolor, OCOLOR, BUFSIZ); ++ setts->ocolor[BUFSIZ] = '\0'; + setts->soffset = SHADOW_OFFSET; ++ setts->ooffset = OUTLINE_OFFSET; + setts->yoffset = DEFAULT_OFFSET; + setts->xoffset = DEFAULT_OFFSET; + setts->align= OSD_ALIGNMENT; +diff -urNad /home/jojo/debian/debs/osdsh/osdsh-0.7.0/tkosdshconfig osdsh-0.7.0/tkosdshconfig +--- /home/jojo/debian/debs/osdsh/osdsh-0.7.0/tkosdshconfig 2002-11-16 22:55:34.000000000 +0100 ++++ osdsh-0.7.0/tkosdshconfig 2003-12-09 15:26:53.000000000 +0100 +@@ -39,6 +39,8 @@ + xside "Left" + yside "Top" + shad "0" ++ outline "0" ++ ocolor "black" + extra "" + extra2 "" + extra3 "" +@@ -59,15 +61,19 @@ + label .$a.ypos -text "Y edge:" + label .$a.yoff -text "Y distance:" + label .$a.shad -text "Shadow offset:" ++ label .$a.outline -text "Outline width:" ++ label .$a.ocolor -text "Outline color:" + + grid .$a.delay -row 1 -column 0 -sticky nsew + grid .$a.color -row 2 -column 0 -sticky nsew + grid .$a.font -row 3 -column 0 -sticky nsew + grid .$a.shad -row 4 -column 0 -sticky nsew ++ grid .$a.outline -row 5 -column 0 -sticky nsew + grid .$a.xpos -row 1 -column 2 -sticky nsew + grid .$a.xoff -row 2 -column 2 -sticky nsew + grid .$a.ypos -row 3 -column 2 -sticky nsew + grid .$a.yoff -row 4 -column 2 -sticky nsew ++ grid .$a.ocolor -row 5 -column 2 -sticky nsew + + entry .$a.delayent -textvariable $a\(delay) + entry .$a.colorent -textvariable $a\(color) +@@ -75,6 +81,8 @@ + entry .$a.shadent -textvariable $a\(shad) + entry .$a.xoffent -textvariable $a\(xoffset) + entry .$a.yoffent -textvariable $a\(yoffset) ++ entry .$a.outlineent -textvariable $a\(outline) ++ entry .$a.ocolorent -textvariable $a\(ocolor) + tk_optionMenu .$a.xside $a\(xside) Left Center Right + tk_optionMenu .$a.yside $a\(yside) Top Bottom + +@@ -82,10 +90,12 @@ + grid .$a.colorent -row 2 -column 1 -sticky nsew + grid .$a.fontent -row 3 -column 1 -sticky nsew + grid .$a.shadent -row 4 -column 1 -sticky nsew ++ grid .$a.outlineent -row 5 -column 1 -sticky nsew + grid .$a.xside -row 1 -column 3 -sticky nsew + grid .$a.xoffent -row 2 -column 3 -sticky nsew + grid .$a.yside -row 3 -column 3 -sticky nsew + grid .$a.yoffent -row 4 -column 3 -sticky nsew ++ grid .$a.ocolorent -row 5 -column 3 -sticky nsew + + } + +@@ -146,6 +156,7 @@ + set argument [lindex $separate 2] + switch $option { + C {set option color} ++ k {set option ocolor} + f {set option font} + d {set option delay} + x {set option xoffset} +@@ -156,6 +167,7 @@ + c {set option xside;set argument Center} + r {set option xside;set argument Right} + o {set option shad} ++ O {set option outline} + } + switch $command { + mixr {set command smix +@@ -208,7 +220,9 @@ + puts $id $a\(d\,[expr \$$a\(delay)]) + puts $id $a\(f\,[expr \$$a\(font)]) + puts $id $a\(C\,[expr \$$a\(color)]) ++ puts $id $a\(k\,[expr \$$a\(ocolor)]) + puts $id $a\(o\,[expr \$$a\(shad)]) ++ puts $id $a\(O\,[expr \$$a\(outline)]) + puts $id $a\(x\,[expr \$$a\(xoffset)]) + puts $id $a\(y\,[expr \$$a\(yoffset)]) + if {[expr \$$a\(xside)=="Right"]} { --- osdsh-0.7.0.orig/debian/patches/00list +++ osdsh-0.7.0/debian/patches/00list @@ -0,0 +1,2 @@ +01-outline +02-align-flag.dpatch --- osdsh-0.7.0.orig/debian/manpages +++ osdsh-0.7.0/debian/manpages @@ -0,0 +1,3 @@ +debian/osdctl.1 +debian/osdsh.1 +debian/osdshconfig.1 --- osdsh-0.7.0.orig/debian/menu +++ osdsh-0.7.0/debian/menu @@ -0,0 +1,4 @@ +?package(osdsh):needs="X11" section="Apps/Tools"\ + title="osdsh" command="/usr/bin/osdsh" +?package(osdsh):needs="X11" section="Apps/Tools"\ + title="osdshconfig" command="/usr/bin/osdshconfig" --- osdsh-0.7.0.orig/debian/control +++ osdsh-0.7.0/debian/control @@ -0,0 +1,20 @@ +Source: osdsh +Section: x11 +Priority: optional +Maintainer: Joachim Breitner +Build-Depends: debhelper (>> 4.0.0), dpatch, libxosd-dev, libapm-dev, libxosd2 +Standards-Version: 3.6.1 + +Package: osdsh +Architecture: any +Depends: tk8.4 | wish, ${shlibs:Depends} ${misc:Depends} +Description: Overlays your screen with various system information + OSDsh is a a little program that overlays system information using + the XOSD library. OSDsh was originally based on osdd and provides + features like: + . + * It is able to display a clock. + * Shows the volume levels of the soundcard when changing. + * Tells you if you are on- or off-line, and the time you were connected. + * Shows the battery status and + * shows any message you want it to. --- osdsh-0.7.0.orig/debian/rules +++ osdsh-0.7.0/debian/rules @@ -0,0 +1,108 @@ +#!/usr/bin/make -f +# Created by Joachim Breitner +# Based upon: +# 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 + + +# we are using dpatch - mostly for fun +include /usr/share/dpatch/dpatch.make + +# For dpatch +PACKAGE=osdsh + +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 + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: patch-stamp configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/osdsh.sgml > osdsh.1 + + touch build-stamp + +clean: clean-patched unpatch +clean-patched: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + mkdir -p $(CURDIR)/debian/osdsh/usr/bin + install src/osdsh/osdsh $(CURDIR)/debian/osdsh/usr/bin + install src/osdctl/osdctl $(CURDIR)/debian/osdsh/usr/bin + mkdir -p $(CURDIR)/debian/osdsh/usr/lib/osdsh + install src/osdsh/libosdsh*.so $(CURDIR)/debian/osdsh/usr/lib/osdsh + install tkosdshconfig $(CURDIR)/debian/osdsh/usr/bin/osdshconfig + + +# 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 + dh_installdocs + dh_installexamples +# dh_install + dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman +# dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# 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 configure --- osdsh-0.7.0.orig/debian/README.Debian +++ osdsh-0.7.0/debian/README.Debian @@ -0,0 +1,18 @@ +osdsh for Debian +---------------- + +osdshconfig +----------- + +Note that I changed the name of tkosdshconfig to osdshconfig. + +Font Outline +------------ + +Derek Lewis has contributed a patch that +makes it possible to have the overlay surrounded by a border, +using the parameters O for the width and k for the color. +This is not yet supported by osdshconfig + + +-- Joachim Breitner , Mon, 8 Dec 2003 --- osdsh-0.7.0.orig/debian/copyright +++ osdsh-0.7.0/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Joachim Breitner on +Sat, 30 Aug 2003 22:32:25 +0200. + +It was downloaded from http://osdsh.sourceforge.net/ + +Author: "Lord Darth Moultak" + +Copyright: 2002 Lord Darth Moultak + + This package 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 package 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. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- osdsh-0.7.0.orig/debian/docs +++ osdsh-0.7.0/debian/docs @@ -0,0 +1,2 @@ +README +README.tkosdshconfig