From 02dc85a95b228b7242b0d11ea35619faad96db03 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 10 Sep 2012 16:16:32 -0500 Subject: Split precise from maverick --- .../precise/applications/ktechlab/debian/changelog | 102 +++++++++++++ ubuntu/precise/applications/ktechlab/debian/compat | 1 + .../precise/applications/ktechlab/debian/control | 18 +++ .../precise/applications/ktechlab/debian/copyright | 49 +++++++ .../applications/ktechlab/debian/debiandirs | 32 ++++ ubuntu/precise/applications/ktechlab/debian/docs | 2 + .../applications/ktechlab/debian/ktechlab.1 | 151 +++++++++++++++++++ .../precise/applications/ktechlab/debian/manpages | 2 + ubuntu/precise/applications/ktechlab/debian/menu | 6 + .../precise/applications/ktechlab/debian/microbe.1 | 162 +++++++++++++++++++++ .../ktechlab/debian/patches/.gitignore | 0 ubuntu/precise/applications/ktechlab/debian/rules | 113 ++++++++++++++ .../applications/ktechlab/debian/source/format | 1 + .../applications/ktechlab/debian/source/options | 6 + 14 files changed, 645 insertions(+) create mode 100644 ubuntu/precise/applications/ktechlab/debian/changelog create mode 100644 ubuntu/precise/applications/ktechlab/debian/compat create mode 100644 ubuntu/precise/applications/ktechlab/debian/control create mode 100644 ubuntu/precise/applications/ktechlab/debian/copyright create mode 100644 ubuntu/precise/applications/ktechlab/debian/debiandirs create mode 100644 ubuntu/precise/applications/ktechlab/debian/docs create mode 100644 ubuntu/precise/applications/ktechlab/debian/ktechlab.1 create mode 100644 ubuntu/precise/applications/ktechlab/debian/manpages create mode 100644 ubuntu/precise/applications/ktechlab/debian/menu create mode 100644 ubuntu/precise/applications/ktechlab/debian/microbe.1 create mode 100644 ubuntu/precise/applications/ktechlab/debian/patches/.gitignore create mode 100755 ubuntu/precise/applications/ktechlab/debian/rules create mode 100644 ubuntu/precise/applications/ktechlab/debian/source/format create mode 100644 ubuntu/precise/applications/ktechlab/debian/source/options (limited to 'ubuntu/precise/applications/ktechlab/debian') diff --git a/ubuntu/precise/applications/ktechlab/debian/changelog b/ubuntu/precise/applications/ktechlab/debian/changelog new file mode 100644 index 000000000..d20521745 --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/changelog @@ -0,0 +1,102 @@ +ktechlab-trinity (0.3-9~1ubuntu0) karmic; urgency=low + + * Karmic rebuild + + -- Timothy Pearson Thu, 02 July 2009 16:08:00 -0600 + +ktechlab-trinity (0.3-9~0ubuntu5) intrepid; urgency=low + + * Moved Trinity to /opt/trinity + * Integrated properly with KDE4.2+ + + -- Timothy Pearson Fri, 06 March 2009 01:35:00 -0600 + +ktechlab-trinity (0.3-9~0ubuntu2) intrepid; urgency=low + + * Added -trinity suffix + + -- Timothy Pearson Wed, 19 Dec 2008 12:52:00 -0600 + +ktechlab (0.3-9) unstable; urgency=low + + * adopted the package ktechlab, with the agreement of Steffen Joeris. + * Made a new patch to make the package compilable with g++-4.3: + src/electronics/simulation/matrix.cpp: simplified the invokation of + new ETMap() to use the default parameters + other places: cleaned the calls to std::abs which need either a + float or a double, made a few modifications to include math.h, + define the type uint when necessary. + (Closes: #474842) + * Made a true Homepage: entry in debian/control + * Upgraded Standards-Version to 3.7.3 + * added a French translation, modified po/Makefile.in to deal with + translations. + * Raised the DH_COMPAT level to 6. + * Added tdesdk-scripts to build-depends to get the extractrc command + + -- Georges Khaznadar Sat, 07 Jun 2008 05:38:09 +0200 + +ktechlab (0.3-8) unstable; urgency=medium + + * Add libpopt-dev as build-depends to avoid FTBFS (Closes: #441480) + * Remove two rpaths from the binaries and add chrpath to + build-depends + * Change Apps to Applications in menu file to follow new format + + -- Steffen Joeris Wed, 19 Sep 2007 22:29:06 +1000 + +ktechlab (0.3-7) unstable; urgency=low + + * Upload to unstable + + -- Steffen Joeris Tue, 08 May 2007 18:02:15 +1000 + +ktechlab (0.3-6) experimental; urgency=low + + * Expand 30-g++-4.2.dpatch to cover another compiler problem, + thanks to Martin Michlmayer (Closes: #394173) + * Change my maintainer address + + -- Steffen Joeris Tue, 9 Jan 2007 09:48:19 +0100 + +ktechlab (0.3-5) unstable; urgency=low + + * Add gpsim-dev to build-depends to get pic support working + (Closes: #357691) + * Add libgtk2.0-dev and libreadline5-dev to build-depends + * Upload sponsored by Petter Reinholdtsen. + + -- Steffen Joeris Fri, 29 Sep 2006 17:25:55 +1000 + +ktechlab (0.3-4) unstable; urgency=low + + * Now recommends gputils for other features + * Add 30-g++.dpatch to prevent FTBFS with g++-4.2 (Closes: #362208) + * Upload sponsored by Petter Reinholdtsen. + + -- Steffen Joeris Sat, 24 Jun 2006 14:03:05 +0200 + +ktechlab (0.3-3) unstable; urgency=low + + * Include patch to let ktechlab build with g++-4.1 + Thanks to Martin Michlmayr (Closes: #356611) + * Upload sponsored by Petter Reinholdtsen. + + -- Steffen Joeris Mon, 13 Mar 2006 00:57:32 +0100 + +ktechlab (0.3-2) unstable; urgency=low + + * remove include sys/io.h to let the package build + on other archs then i386 and amd64 (Closes: #349854) + * add dpatch to build-depends + * upload sponsored by Petter Reinholdtsen. + + -- Steffen Joeris Thu, 26 Jan 2006 00:21:36 +0100 + +ktechlab (0.3-1) unstable; urgency=low + + * Initial release (Closes: #308551) + * Upload sponsored by Petter Reinholdtsen. + + -- Steffen Joeris Thu, 12 Jan 2006 00:47:52 +0100 + diff --git a/ubuntu/precise/applications/ktechlab/debian/compat b/ubuntu/precise/applications/ktechlab/debian/compat new file mode 100644 index 000000000..1e8b31496 --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/compat @@ -0,0 +1 @@ +6 diff --git a/ubuntu/precise/applications/ktechlab/debian/control b/ubuntu/precise/applications/ktechlab/debian/control new file mode 100644 index 000000000..765916f8a --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/control @@ -0,0 +1,18 @@ +Source: ktechlab-trinity +Section: tde +Priority: optional +Maintainer: Timothy Pearson +Build-Depends: debhelper (>= 6.0.0), quilt, imagemagick, tdelibs4-trinity-dev, gpsim-dev (>= 0.21.11-2), libgtk2.0-dev, libreadline6-dev, libopts25-dev, chrpath, libpopt-dev, tdesdk-scripts-trinity, automake, autoconf, libtool, libltdl-dev +Standards-Version: 3.8.4 + +Package: ktechlab-trinity +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: ktechlab-trinity (<< 4:14.0.0) +Breaks: ktechlab-trinity (<< 4:14.0.0) +Recommends: gputils +Description: circuit simulator for microcontrollers and electronics [Trinity] + KTechlab is a circuit simulator with a nice, clickable and discoverable + interface. It supports many discrete components, logic circuits as well + as PIC programming in its own Basic dialect and some form of assembler. +Homepage: http://ktechlab.org/ diff --git a/ubuntu/precise/applications/ktechlab/debian/copyright b/ubuntu/precise/applications/ktechlab/debian/copyright new file mode 100644 index 000000000..5b1af8a2e --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/copyright @@ -0,0 +1,49 @@ +This package was debianized by Steffen Joeris on +Thu, 12 Jan 2006 00:47:52 +0100. + +It was downloaded from http://ktechlab.org/download/ + +Copyright Holder: David Saxton + Daniel Clarke + (Main Developers) + +Additional Copyright Holders: + Copyright (C) 1997 Martin Jones (mjones@kde.org) +Files: src/gui/colorcombo.h + + Copyright (C) 2005 by Fredy Yanardi +Files: src/electronics/components/magnitudecomparator.h + src/electronics/components/magnitudecomparator.cpp + + Copyright (C) 2005 by John Myers +Files: src/electronics/components/rotoswitch.h + src/electronics/components/rotoswitch.cpp + + Copyright (C) 2005 Christoph Cullmann +Files: src/katemdi.h + src/katemdi.cpp + + Copyright (C) 2002, 2003 Joseph Wenninger +Files: src/katemdi.h + src/katemdi.cpp + + Copyright (C) 2002 Simon Hausmann +Files: src/katemdi.cpp + + Copyright Anders Lund +Files: src/view.cpp + + +License: + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License, version 2 +or higher as published by the Free Software Foundation. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANDABILITY of FITNESS FOR A PARTICULAR PURPOSE. +See the GNU General Public License for 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/ubuntu/precise/applications/ktechlab/debian/debiandirs b/ubuntu/precise/applications/ktechlab/debian/debiandirs new file mode 100644 index 000000000..f2d481ccf --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/debiandirs @@ -0,0 +1,32 @@ +export kde_confdir=/etc/trinity +export kde_prefix=/opt/trinity +export kde_bindir=/opt/trinity/bin +export kde_includedir=/opt/trinity/include/tde +export kde_libdir=/opt/trinity/lib +export kde_cgidir=/opt/trinity/lib/cgi-bin +export kde_moduledir=/opt/trinity/lib/trinity +export kde_appsdir=/opt/trinity/share/applnk +export kde_datadir=/opt/trinity/share/apps +export kde_htmldir=/opt/trinity/share/doc/tde/HTML +export kde_icondir=/opt/trinity/share/icons +export kde_locale=/opt/trinity/share/locale +export kde_mimedir=/opt/trinity/share/mimelnk +export kde_servicesdir=/opt/trinity/share/services +export kde_servicetypesdir=/opt/trinity/share/servicetypes +export kde_sounddir=/opt/trinity/share/sounds +export kde_templatesdir=/opt/trinity/share/templates +export kde_wallpaperdir=/opt/trinity/share/wallpapers +export mandir=/opt/trinity/share/man +export infodir=/opt/trinity/share/info +export sysconfdir=/etc +export QTDIR=/usr/share/qt3 +export IDL=/opt/trinity/bin/cuteidl +export DCOPIDL=/opt/trinity/bin/dcopidl +export DCOPIDL2CPP=/opt/trinity/bin/dcopidl2cpp +export KDB2HTML=/opt/trinity/bin/kdb2html +export MCOPIDL=/opt/trinity/bin/mcopidl +export ARTSCCONFIG=/opt/trinity/bin/artsc-config +export INSTALL_DATA=install -p -c -m 644 +configkde=--disable-debug --disable-rpath --prefix=$(kde_prefix) --libexecdir=$(kde_bindir) --sysconfdir=$(sysconfdir) --libdir=$(kde_libdir) --includedir=$(kde_includedir) --with-qt-includes=/usr/include/qt3 --mandir=$(mandir) --infodir=$(infodir) --with-xinerama +configtdevelop=--disable-debug --disable-rpath --enable-docbase --enable-kdoc2 --libdir=$(kde_libdir) --includedir=$(kde_includedir) --with-qt-includes=/usr/include/qt3 --mandir=$(mandir) --with-tdelibsdoc-dir=/opt/trinity/share/doc/tdelibs3-doc/html --with-xinerama +configtdepim=--disable-debug --disable-rpath --with-extra-includes=/usr/include/libpisock --enable-shared --prefix=$(kde_prefix) --libexecdir=$(kde_bindir) --with-qt-includes=/usr/include/qt3 --mandir=$(mandir) --infodir=$(infodir) --with-xinerama diff --git a/ubuntu/precise/applications/ktechlab/debian/docs b/ubuntu/precise/applications/ktechlab/debian/docs new file mode 100644 index 000000000..724e08449 --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/docs @@ -0,0 +1,2 @@ +README +TODO diff --git a/ubuntu/precise/applications/ktechlab/debian/ktechlab.1 b/ubuntu/precise/applications/ktechlab/debian/ktechlab.1 new file mode 100644 index 000000000..226deb2e6 --- /dev/null +++ b/ubuntu/precise/applications/ktechlab/debian/ktechlab.1 @@ -0,0 +1,151 @@ +.\" This file was generated by kdemangen.pl +.TH KTECHLAB 1 "Jan 2006" "K Desktop Environment" "An IDE for microcontrollers and electronics" +.SH NAME +ktechlab +\- An IDE for microcontrollers and electronics +.SH SYNOPSIS +ktechlab [Qt\-options] [KDE\-options] [URL] +.SH DESCRIPTION +An IDE for microcontrollers and electronics +.SH OPTIONS +.SS +.SS Arguments: +.TP +.B URL +Document to open. +.SS Generic options: +.TP +.B \-\-help +Show help about options +.TP +.B \-\-help\-qt +Show Qt specific options +.TP +.B \-\-help\-kde +Show KDE specific options +.TP +.B \-\-help\-all +Show all options +.TP +.B \-\-author +Show author information +.TP +.B \-v, \-\-version +Show version information +.TP +.B \-\-license +Show license information +.TP +.B \-\- +End of options +.SS +.SS KDE options: +.TP +.B \-\-caption +Use 'caption' as name in the titlebar +.TP +.B \-\-icon +Use 'icon' as the application icon +.TP +.B \-\-miniicon +Use 'icon' as the icon in the titlebar +.TP +.B \-\-config +Use alternative configuration file +.TP +.B \-\-dcopserver +Use the DCOP Server specified by 'server' +.TP +.B \-\-nocrashhandler +Disable crash handler, to get core dumps +.TP +.B \-\-waitforwm +Waits for a WM_NET compatible windowmanager +.TP +.B \-\-style