--- wink-1.5.1060.orig/debian/lintian/wink +++ wink-1.5.1060/debian/lintian/wink @@ -0,0 +1 @@ +wink: binary-has-unneeded-section --- wink-1.5.1060.orig/debian/manpages +++ wink-1.5.1060/debian/manpages @@ -0,0 +1 @@ +debian/manpage/wink.1 --- wink-1.5.1060.orig/debian/copyright +++ wink-1.5.1060/debian/copyright @@ -0,0 +1,61 @@ +This package was debianized by Daniel Baumann on +Mon, 11 Sep 2006 14:56:00 +0200. + +It was downloaded from . + +Copyright Holder: Satish Kumar Sampath + +License: + + Copyright (C) 2000-2005 Satish Kumar Sampath + + This software is provided 'as-is', without any express or implied + warranty. In no event will the author be held liable for any + consequences/damages arising from the use of this software. + + This program and the accompanied DLLs/plugins/artwork are FREEWARE. You + can use it for personal, business, educational or any other need of + yours, subject to the following restrictions: + + 1. You may not re-distribute this program without contacting the author + and getting his consent. You may not charge any fee or + re-distribution fee for it. + + 2. This notice may not be removed or altered from any distribution. + + 3. No form of decompilation/reverse engineering/disassembling parts or + whole of the software be done. + + 4. You may not misrepresent the origin of the software/artwork. If you + are distributing the package/portions of the package, the files must + be clearly indicated that they are part of DebugMode Wink software. + + ------------------------------------------------------------------------ + Subject: Re: Distributing Wink + From: Satish Kumar S. + Date: 08/26/2006 12:01 PM + To: Daniel Baumann + + Hi, + + I am the author of Wink and allow Debian and its mirrors to distribute + the Wink binaries/software package. + + Sorry I do not use gpg/pgp. + + - satish + + > Hi, + > + > I'm sorry, but I need you to bother again. I require a statement from + > you in a mail similar as 'I allow Debian and its mirrors to distribute + > wink.' If possible, please sign it with gpg/pgp. + > + > Regards, + > Daniel + > + > -- + > Address: Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist + > Email: daniel.baumann@panthera-systems.net + > Internet: http://people.panthera-systems.net/~daniel-baumann + ------------------------------------------------------------------------ --- wink-1.5.1060.orig/debian/manpage/wink.1 +++ wink-1.5.1060/debian/manpage/wink.1 @@ -0,0 +1,25 @@ +.TH WINK 1 "2006-09-11" "1.5.1060" "Tutorial and Presentation Creating Software" + +.SH NAME +wink \- Tutorial and Presentation Creating Software + +.SH SYNOPSIS +.B wink + +.SH DESCRIPTION +.B WINK +is a Tutorial and Presentation creation software, primarily aimed at creating +tutorials on how to use software. Using +.B WINK +you can capture screenshots, add explanations boxes, buttons, titles etc and +generate a highly effective tutorial for your users. + +.SH OPTIONS +.B WINK +has no options. + +.SH AUTHOR +wink was written by Satish Kumar Sampath . +.PP +This manual page was written by Daniel Baumann for the +Debian project (but may be used by others). --- wink-1.5.1060.orig/debian/changelog +++ wink-1.5.1060/debian/changelog @@ -0,0 +1,12 @@ +wink (1.5.1060-2) unstable; urgency=high + + * Added dependency to libstdc++5 manually (Closes: #392096). + + -- Daniel Baumann Sat, 30 Dec 2006 01:17:22 +0100 + +wink (1.5.1060-1) unstable; urgency=low + + * Initial release. + * Added manpage and lintian overrides. + + -- Daniel Baumann Mon, 11 Sep 2006 14:56:00 +0200 --- wink-1.5.1060.orig/debian/rules +++ wink-1.5.1060/debian/rules @@ -0,0 +1,86 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: + +clean: + dh_testdir + dh_testroot + + # Cleaning package + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Installing package + mkdir debian/tmp + tar xfz upstream/*.tar.gz -C debian/tmp + + install -d -m 0755 debian/wink/usr/lib/wink + tar xfz debian/tmp/installdata.tar.gz -C debian/wink/usr/lib/wink + + # Installing wrapper script + install -D -m 755 debian/script/wink.sh debian/wink/usr/bin/wink + + # Moving files + install -d -m 755 debian/wink/usr/share/wink + + mv debian/wink/usr/lib/wink/Backgrounds debian/wink/usr/share/wink + ln -s ../../share/wink/Backgrounds debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/Buttons debian/wink/usr/share/wink + ln -s ../../share/wink/Buttons debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/Callouts debian/wink/usr/share/wink + ln -s ../../share/wink/Callouts debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/FlashControlBars debian/wink/usr/share/wink + ln -s ../../share/wink/FlashControlBars debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/FlashPreloaders debian/wink/usr/share/wink + ln -s ../../share/wink/FlashPreloaders debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/Resources debian/wink/usr/share/wink/Resources + ln -s ../../share/wink/Resources debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/Samples debian/wink/usr/share/wink + ln -s ../../share/wink/Samples debian/wink/usr/lib/wink + mv debian/wink/usr/lib/wink/Templates debian/wink/usr/share/wink + ln -s ../../share/wink/Templates debian/wink/usr/lib/wink + + install -d -m 755 debian/wink/usr/share/doc + mv debian/wink/usr/lib/wink/Docs debian/wink/usr/share/doc/wink + mv debian/wink/usr/lib/wink/*.txt debian/wink/usr/share/doc/wink + mv debian/wink/usr/share/doc/wink/changelog.txt debian/wink/usr/share/doc/wink/changelog + + # Removing double files + rm -f debian/wink/usr/share/doc/wink/license.txt + + # Installing lintian overrides + for LINTIAN in debian/lintian/*; \ + do \ + install -D -m 0644 $$LINTIAN debian/`basename $$LINTIAN`/usr/share/lintian/overrides/`basename $$LINTIAN` || exit 1; \ + done + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_installmenu + dh_installman + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- wink-1.5.1060.orig/debian/menu +++ wink-1.5.1060/debian/menu @@ -0,0 +1,4 @@ +?package(wink):needs="X11" section="Apps/Graphics"\ + title="Wink" longtitle="Wink"\ + description="Tutorial and Presentation Creating Software"\ + command="/usr/bin/wink" --- wink-1.5.1060.orig/debian/script/wink.sh +++ wink-1.5.1060/debian/script/wink.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec /usr/lib/wink/wink "${@}" --- wink-1.5.1060.orig/debian/compat +++ wink-1.5.1060/debian/compat @@ -0,0 +1 @@ +4 --- wink-1.5.1060.orig/debian/control +++ wink-1.5.1060/debian/control @@ -0,0 +1,15 @@ +Source: wink +Section: non-free/graphics +Priority: optional +Maintainer: Daniel Baumann +Build-Depends: debhelper (>= 4) +Standards-Version: 3.7.2 + +Package: wink +Architecture: i386 +Depends: ${shlibs:Depends}, libgtk2.0-0, libstdc++5 +Description: Tutorial and Presentation Creating Software + Wink is a Tutorial and Presentation creation software, primarily aimed at + creating tutorials on how to use software. Using Wink you can capture + screenshots, add explanations boxes, buttons, titles etc and generate a highly + effective tutorial for your users.