debian/0000775000000000000000000000000012245470141007170 5ustar debian/patches/0000775000000000000000000000000012245470037010623 5ustar debian/patches/0002-kfreebsd-support.patch0000664000000000000000000001414512243565472015535 0ustar From: Kill Your TV Date: Sun, 18 Nov 2012 10:33:13 +0000 Subject: kfreebsd support --- build.xml | 5 ++++- src/c/Makefile-kfreebsd-x86-32.make | 42 +++++++++++++++++++++++++++++++++++++ src/c/Makefile-kfreebsd-x86-64.make | 42 +++++++++++++++++++++++++++++++++++++ src/c/logger.c | 2 +- src/c/wrapper.c | 6 ++++-- 5 files changed, 93 insertions(+), 4 deletions(-) create mode 100644 src/c/Makefile-kfreebsd-x86-32.make create mode 100644 src/c/Makefile-kfreebsd-x86-64.make diff --git a/build.xml b/build.xml index fa2c6d5..5206ccf 100644 --- a/build.xml +++ b/build.xml @@ -87,6 +87,9 @@ + + + @@ -181,7 +184,7 @@ - + diff --git a/src/c/Makefile-kfreebsd-x86-32.make b/src/c/Makefile-kfreebsd-x86-32.make new file mode 100644 index 0000000..462314a --- /dev/null +++ b/src/c/Makefile-kfreebsd-x86-32.make @@ -0,0 +1,42 @@ +# Copyright (c) 1999, 2012 Tanuki Software, Ltd. +# http://www.tanukisoftware.com +# All rights reserved. +# +# This software is the proprietary information of Tanuki Software. +# You shall use it only in accordance with the terms of the +# license agreement you entered into with Tanuki Software. +# http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html + +CC = gcc -Wall -pedantic -DKFREEBSD -fPIC -I/usr/include -L/usr/lib -DUNICODE -D_UNICODE + +INCLUDE=$(JAVA_HOME)/include + +CFLAGS = -I$(INCLUDE) -I$(INCLUDE)/freebsd + +wrapper_SOURCE = wrapper.c wrapperinfo.c wrappereventloop.c wrapper_unix.c property.c logger.c wrapper_file.c wrapper_i18n.c wrapper_hashmap.c + +libwrapper_so_OBJECTS = wrapper_i18n.o wrapperjni_unix.o wrapperinfo.o wrapperjni.o + +BIN = ../../bin +LIB = ../../lib + +all: init wrapper libwrapper.so + +clean: + rm -f *.o + +cleanall: clean + rm -rf *~ .deps + rm -f $(BIN)/wrapper $(LIB)/libwrapper.so + +init: + if test ! -d .deps; then mkdir .deps; fi + +wrapper: $(wrapper_SOURCE) + $(CC) $(wrapper_SOURCE) -lm -pthread -o $(BIN)/wrapper + +libwrapper.so: $(libwrapper_so_OBJECTS) + $(CC) -shared $(libwrapper_so_OBJECTS) -o $(LIB)/libwrapper.so + +#%.o: %.c +# $(COMPILE) -c $(DEFS) $< diff --git a/src/c/Makefile-kfreebsd-x86-64.make b/src/c/Makefile-kfreebsd-x86-64.make new file mode 100644 index 0000000..907978a --- /dev/null +++ b/src/c/Makefile-kfreebsd-x86-64.make @@ -0,0 +1,42 @@ +# Copyright (c) 1999, 2012 Tanuki Software, Ltd. +# http://www.tanukisoftware.com +# All rights reserved. +# +# This software is the proprietary information of Tanuki Software. +# You shall use it only in accordance with the terms of the +# license agreement you entered into with Tanuki Software. +# http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html + +CC = gcc -Wall -pedantic -DKFREEBSD -DJSW64 -fPIC -I/usr/include -L/usr/lib -DUNICODE -D_UNICODE + +INCLUDE=$(JAVA_HOME)/include + +CFLAGS = -I$(INCLUDE) -I$(INCLUDE)/freebsd + +wrapper_SOURCE = wrapper.c wrapperinfo.c wrappereventloop.c wrapper_unix.c property.c logger.c wrapper_file.c wrapper_i18n.c wrapper_hashmap.c + +libwrapper_so_OBJECTS = wrapper_i18n.o wrapperjni_unix.o wrapperinfo.o wrapperjni.o + +BIN = ../../bin +LIB = ../../lib + +all: init wrapper libwrapper.so + +clean: + rm -f *.o + +cleanall: clean + rm -rf *~ .deps + rm -f $(BIN)/wrapper $(LIB)/libwrapper.so + +init: + if test ! -d .deps; then mkdir .deps; fi + +wrapper: $(wrapper_SOURCE) + $(CC) $(wrapper_SOURCE) -lm -pthread -o $(BIN)/wrapper + +libwrapper.so: $(libwrapper_so_OBJECTS) + $(CC) -shared $(libwrapper_so_OBJECTS) -o $(LIB)/libwrapper.so + +#%.o: %.c +# $(COMPILE) -c $(DEFS) $< diff --git a/src/c/logger.c b/src/c/logger.c index 363d42f..fbc9fbd 100644 --- a/src/c/logger.c +++ b/src/c/logger.c @@ -76,7 +76,7 @@ typedef long intptr_t; #elif defined(AIX) || defined(HPUX) || defined(MACOSX) || defined(OSF1) #elif defined(IRIX) #define PATH_MAX FILENAME_MAX - #elif defined(FREEBSD) + #elif defined(FREEBSD) || defined(KFREEBSD) #include #include #else /* LINUX */ diff --git a/src/c/wrapper.c b/src/c/wrapper.c index 13312b5..1f4a064 100644 --- a/src/c/wrapper.c +++ b/src/c/wrapper.c @@ -98,7 +98,7 @@ #elif defined(AIX) || defined(HPUX) || defined(MACOSX) || defined(OSF1) #elif defined(IRIX) #define PATH_MAX FILENAME_MAX - #elif defined(FREEBSD) + #elif defined(FREEBSD) || defined(KFREEBSD) #include #include #else /* LINUX */ @@ -4619,7 +4619,7 @@ int checkIfBinary(const TCHAR *filename) { log_printf(WRAPPER_SOURCE_WRAPPER, LEVEL_DEBUG, TEXT("Magic number for file %s: 0x%02x%02x%02x%02x"), filename, head[0], head[1], head[2], head[3]); } -#if defined(LINUX) || defined(FREEBSD) || defined(SOLARIS) +#if defined(LINUX) || defined(FREEBSD) || defined(KFREEBSD) || defined(SOLARIS) if (head[1] == 'E' && head[2] == 'L' && head[3] == 'F') { return 1; /*ELF */ #elif defined(AIX) @@ -5912,6 +5912,8 @@ int wrapperBuildJavaCommandArrayInner(TCHAR **strings, int addQuotes, const TCHA TEXT("wrapper.java.additional.auto_bits.solaris"), #elif defined(FREEBSD) TEXT("wrapper.java.additional.auto_bits.freebsd"), +#elif defined(KFREEBSD) + TEXT("wrapper.java.additional.auto_bits.kfreebsd"), #elif defined(MACOSX) TEXT("wrapper.java.additional.auto_bits.macosx"), #endif debian/patches/series0000664000000000000000000000011712245470037012037 0ustar bashisms_690722.patch 0002-kfreebsd-support.patch 0001-fix-as-needed-ppc.patch debian/patches/bashisms_690722.patch0000664000000000000000000000147112243565472014317 0ustar Description: correct bashisms in daemon.sh script Author: tony mancill --- a/src/bin/sh.script.in +++ b/src/bin/sh.script.in @@ -283,11 +283,11 @@ then OS_VER=`sw_vers | grep 'ProductVersion:' | grep -o '[0-9]*\.[0-9]*\.[0-9]*'` DIST_ARCH="universal" - if [[ "$OS_VER" < "10.5.0" ]] + if [ "$OS_VER" \< "10.5.0" ] then DIST_BITS="32" else - if [ "X`sysctl -n hw.cpu64bit_capable`" == "X1" ] + if [ "X`sysctl -n hw.cpu64bit_capable`" = "X1" ] then DIST_BITS="64" else @@ -966,7 +966,7 @@ fi # If launchd is set to run the daemon already at Load, we don't need to call start getpid - if [ "X$pid" == "X" ] ; then + if [ "X$pid" = "X" ] ; then launchctl start ${APP_PLIST_BASE} fi debian/patches/0001-fix-as-needed-ppc.patch0000664000000000000000000000214512245470103015407 0ustar Description: Fix FTBFS on ppc: "[exec] wrapper.c:(.text+0xd7e8): undefined reference to `ceil'" Author: Andreas Moog Bug: https://sourceforge.net/p/wrapper/bugs/285/ --- service-wrapper-java-3.5.22.orig/src/c/Makefile-linux-ppc-32.make +++ service-wrapper-java-3.5.22/src/c/Makefile-linux-ppc-32.make @@ -33,7 +33,7 @@ init: if test ! -d .deps; then mkdir .deps; fi wrapper: $(wrapper_SOURCE) - $(COMPILE) -lm -pthread $(wrapper_SOURCE) -o $(BIN)/wrapper + $(COMPILE) -pthread $(wrapper_SOURCE) -lm -o $(BIN)/wrapper libwrapper.so: $(libwrapper_so_OBJECTS) ${COMPILE} -shared $(libwrapper_so_OBJECTS) -o $(LIB)/libwrapper.so --- service-wrapper-java-3.5.22.orig/src/c/Makefile-linux-ppc-64.make +++ service-wrapper-java-3.5.22/src/c/Makefile-linux-ppc-64.make @@ -33,7 +33,7 @@ init: if test ! -d .deps; then mkdir .deps; fi wrapper: $(wrapper_SOURCE) - $(COMPILE) -lm -pthread $(wrapper_SOURCE) -o $(BIN)/wrapper + $(COMPILE) -pthread $(wrapper_SOURCE) -lm -o $(BIN)/wrapper libwrapper.so: $(libwrapper_so_OBJECTS) ${COMPILE} -shared $(libwrapper_so_OBJECTS) -o $(LIB)/libwrapper.so debian/wrapper.10000664000000000000000000000202312243565472010741 0ustar .TH javawrapper 1 "12/24/2012" .SH NAME wrapper \- Jar daemon wrapper .SH USAGE \fBwrapper\fP [\f[I]\f[]] [\f[I]\f[]] [\f[I]]\f[] where can be one of: .TP .B -c --console run as a Console application .TP .B -v --version print the wrapper's version information. .TP .B -? --help print this help message .TP .B -- mark the end of Wrapper arguments. All arguments after the '--' will be passed through unmodified to the java application. .TP is the wrapper.conf to use. The filename must either be absolute or relative to the location of \fBwrapper\fP .TP \f[I]\f[] are configuration name-value pairs which override values in wrapper.conf. For example: wrapper.debug=true .TP Please note that any file references must be either absolute or relative to the location of the wrapper executable. .PP This manual page was written by Rémi Debay and Kill Your TV .debian/service-wrapper.install0000664000000000000000000000021012243565472013701 0ustar bin/wrapper usr/sbin/ lib/daemon.sh usr/share/wrapper/ lib/make-wrapper-init.sh usr/share/wrapper/ conf/wrapper.conf usr/share/wrapper/ debian/control0000664000000000000000000000632112245470024010575 0ustar Source: service-wrapper-java Section: java Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Rémi Debay Uploaders: tony mancill Build-Depends: debhelper (>= 9), javahelper, default-jdk, ant, ant-optional, junit, junit4, hardening-wrapper Standards-Version: 3.9.5 Vcs-Git: git://git.debian.org/git/collab-maint/service-wrapper-java.git Vcs-Browser: http://git.debian.org/?p=collab-maint/service-wrapper-java.git Homepage: http://wrapper.tanukisoftware.com Package: service-wrapper Architecture: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 powerpc Depends: ${shlibs:Depends}, ${misc:Depends}, libservice-wrapper-java (>= ${source:Version}), libservice-wrapper-jni (>= ${source:Version}) Description:Jar daemon wrapper The Java Service Wrapper makes very easy to install a Java Application as a daemon process on Unix systems. The Wrapper monitors a JVM (Java Virtual Machine) process and automatically restarts it if it that the JVM has crashed or hung. This process takes just a few seconds once the Wrapper has decided there is a problem. It also gives the ability to handle process priority. Package: libservice-wrapper-java Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, Suggests: libservice-wrapper-doc Description:Jar daemon wrapper java libraries This Package contains the Java jar libraries used by the Java Service Wrapper. It can be used to handle wrapper specific attributes. . The Java Service Wrapper makes very easy to install a Java Application as a daemon process on Unix systems. The Wrapper monitors a JVM (Java Virtual Machine) process and automatically restarts it if it that the JVM has crashed or hung. This process takes just a few seconds once the Wrapper has decided there is a problem. It also gives the ability to handle process priority. Package: libservice-wrapper-jni Architecture: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 powerpc Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre-headless | java5-runtime-headless | java6-runtime-headless Suggests: libservice-wrapper-doc Description:Jar daemon wrapper JNI libraries This Package contains the JNI libraries used by the Java Service Wrapper. . The Java Service Wrapper makes very easy to install a Java Application as a daemon process on Unix systems. The Wrapper monitors a JVM (Java Virtual Machine) process and automatically restarts it if it that the JVM has crashed or hung. This process takes just a few seconds once the Wrapper has decided there is a problem. It also gives the ability to handle process priority. Package: libservice-wrapper-doc Section: doc Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends} Description:Jar daemon wrapper (javadoc files) The Java Service Wrapper makes very easy to install a Java Application as a daemon process on Unix systems. The Wrapper monitors a JVM (Java Virtual Machine) process and automatically restarts it if it that the JVM has crashed or hung. This process takes just a few seconds once the Wrapper has decided there is a problem. It also gives the ability to handle process priority. . This package contains the javadoc files. debian/libservice-wrapper-java.preinst0000664000000000000000000000032012243565472015327 0ustar #!/bin/sh -e if [ ! -z $2 ]; then if dpkg --compare-versions $2 lt 3.5.9-3; then test -d /usr/share/doc/libservice-wrapper-java \ && rm -rf /usr/share/doc/libservice-wrapper-java fi fi #DEBHELPER# debian/source/0000775000000000000000000000000012243565472010502 5ustar debian/source/format0000664000000000000000000000001412243565472011710 0ustar 3.0 (quilt) debian/libservice-wrapper-doc.javadoc0000664000000000000000000000003512243565472015101 0ustar debian/_jh_build.javadoc/api debian/docs0000664000000000000000000000003512243565472010053 0ustar README_??.txt doc/index.html debian/javabuild0000664000000000000000000000002012243565472011056 0ustar wrapper.jar src debian/service-wrapper.manpages0000664000000000000000000000002112243565472014026 0ustar debian/wrapper.1 debian/rules0000775000000000000000000000256712243565472010274 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export CLASSPATH=/usr/share/java/junit4.jar:/usr/share/java/junit.jar:/usr/share/java/commons-collections.jar export DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH) export DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) export JAVA_HOME=/usr/lib/jvm/default-java export DEB_BUILD_HARDENING=1 %: dh $@ --with javahelper override_dh_auto_clean: -ant -f build.xml \ -Dbits=$$(dpkg-architecture -qDEB_HOST_ARCH_BITS) total-clean jh_build --clean rm -f bin/* build/* conf/* lib/* logs/* test/* src/c/*.o src/c/wrapperinfo.c override_dh_auto_build: dh_testdir jh_build ant -f build.xml \ -Dbits=$$(dpkg-architecture -qDEB_HOST_ARCH_BITS) compile-c-unix ant -f build.xml \ -Dbits=$$(dpkg-architecture -qDEB_HOST_ARCH_BITS) conf BUILD_DIR=lib /bin/sh $(CURDIR)/debian/build-wrapper-scripts \ /usr/share/wrapper/daemon.sh /usr/sbin/wrapper override_dh_installchangelogs: dh_installchangelogs doc/revisions.txt debian/compat0000664000000000000000000000000212243565472010400 0ustar 9 debian/changelog0000664000000000000000000000642112245470003011042 0ustar service-wrapper-java (3.5.22-2ubuntu1) trusty; urgency=low * debian/patches/0001-fix-as-needed-ppc to fix FTBFS on ppc: "[exec] wrapper.c:(.text+0xd7e8): undefined reference to `ceil'" -- Andreas Moog Wed, 27 Nov 2013 23:18:47 +0100 service-wrapper-java (3.5.22-2) unstable; urgency=low * Only build for upstram supported architectures. See: #730010 - amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 powerpc * Add patch for bashisms in daemon.sh script. (Closes: #670722) -- tony mancill Thu, 21 Nov 2013 21:23:42 -0800 service-wrapper-java (3.5.22-1) unstable; urgency=low * New upstream release. (Closes: #610374) - Thanks to Kill Your TV for updated packaging. * debian/control - Build-depend on debhelper >=9, default-jdk. - Depend on -headless JDK, hardening-wrapper. - Bump Standards-Version to 3.9.5 (no changes). * debian/rules - Enable build hardening. - Tweak for new upstream release. * Add javadocs in -doc package. * Now allow any arch to be built. * Separate preinst scripts for -jni and -java packages. -- tony mancill Sat, 09 Nov 2013 21:49:53 -0800 service-wrapper-java (3.5.3+repack-1) UNRELEASED; urgency=low * Team upload. * Acknowledge NMU - thank you to Michael Gilbert (Closes: #702790) * Add d/watch file. Thank you to gregor herrmann. -- tony mancill Sun, 24 Mar 2013 12:00:00 -0700 service-wrapper-java (3.5.3+repack-0+nmu1) unstable; urgency=medium * Non-maintainer upload. * Repack upstream source to remove .pc directory (closes: #702790). -- Michael Gilbert Thu, 21 Mar 2013 05:12:48 +0000 service-wrapper-java (3.5.3-4) unstable; urgency=low * Fix binary-arch build (Closes: #666309) * Update Format in d/copyright. * Add patch for --as-needed linker option (Closes: #647355) - Thanks to Ilya Barygin * Bump Standards-Version to 3.9.3 (no changes). -- tony mancill Sun, 01 Apr 2012 17:12:42 -0700 service-wrapper-java (3.5.3-3) unstable; urgency=low * Set distribution to unstable. * Bump standard versions to 3.9.2 (no changes needed) * Add build-wrapper-scripts and example wrapper.conf (Closes: #621914) - Thanks to Ximim Luo * Add Vcs-Git: and Vcs-Browser: fields to debian/control. * Remove deprecated build-dep on default-jdk-builddep * Remove deprecated JRE/JDK dependency from libservice-wrapper-java * Update debian/copyright to DEP5. Fully quote the upstream license. -- tony mancill Sun, 02 Oct 2011 21:34:57 -0700 service-wrapper-java (3.5.3-2) experimental; urgency=low [ Rémi Debay ] * Moving jni library to /usr/lib/jni. * Changing standards version to 3.9.1. * split the package on 3 packages. * Adding manpage for wrapper. * Imporving building for archs specifics packages. [ tony mancill ] * Add myself to Uploaders in debian/control. * Set distribution to experimental for upload during freeze. -- tony mancill Sat, 21 Aug 2010 13:37:08 -0700 service-wrapper-java (3.5.3-1) unstable; urgency=low * Initial release (Closes: #591758) -- Rémi Debay Wed, 04 Aug 2010 17:31:56 +0200 debian/libservice-wrapper-jni.install0000664000000000000000000000003712243565472015155 0ustar lib/libwrapper.so usr/lib/jni/ debian/watch0000664000000000000000000000034512243565472010235 0ustar version=3 opts="downloadurlmangle=s|/downloads/([\d\.]+)/$|/download/$1/wrapper_$1_src.tar.gz|,\ filenamemangle=s|^.+?([\d\.]+).+$|wrapper_$1_src.tar.gz|" \ http://wrapper.tanukisoftware.com/downloads/ /downloads/([\d\.]+)/ debian/libservice-wrapper-java.install0000664000000000000000000000003312243565472015312 0ustar wrapper.jar usr/share/java debian/build-wrapper-scripts0000664000000000000000000000637412243565472013401 0ustar #!/bin/sh # Split up service-wrapper-java sh.script.in into a user-editable config # component that calls the static code, which needs not be modified. SRCSH="src/bin/sh.script.in" if [ ! -f "$SRCSH" ]; then echo >&2 "cwd has no $SRCSH"; exit 1; fi if [ ! -d "$BUILD_DIR" ]; then echo >&2 "BUILD_DIR not a directory, or unset: $BUILD_DIR"; exit 1; fi WRAPPER_SERVICE="$1" WRAPPER_CMD="$2" mk_init_template() { { sed -n -e "1,${2}p" "$SRCSH" cat <&2 "WRAPPER_CONF not set; abort" exit 1 fi EOF sed -n -e "${2},\$p" "$SRCSH" } mk_make_wrapper_init_sh() { cat <<'EOF2' #!/bin/sh # Create an application-specific initscript that runs service-wrapper. QUIET=false PREINIT_SH=/dev/null case "$1" in -q|--quiet) QUIET=true ;; -h|--help) echo >&2 "Usage: cat | $0 [-q|--quiet]" exit 1 esac if ! $QUIET; then cat >&2 < "$PREINIT_SH" if ! $QUIET; then set -x; fi eval sed $SED_ARGS < "$BUILD_DIR/$(basename $WRAPPER_SERVICE)" chmod +x "$BUILD_DIR/$(basename $WRAPPER_SERVICE)" mk_make_wrapper_init_sh $L1 $L2 > "$BUILD_DIR/make-wrapper-init.sh" chmod +x "$BUILD_DIR/make-wrapper-init.sh" } debian/libservice-wrapper-jni.preinst0000664000000000000000000000031512243565472015172 0ustar #!/bin/sh -e if [ ! -z $2 ]; then if dpkg --compare-versions $2 lt 3.5.9-3; then test -d /usr/share/doc/libservice-wrapper-jni \ && rm -rf /usr/share/doc/libservice-wrapper-jni fi fi #DEBHELPER# debian/copyright0000664000000000000000000001361712243565472011145 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: Java Service Wrapper Upstream-Contact: Tanuki Software, Ltd. Source: http://sourceforge.net/projects/wrapper/ Files: * Copyright: 2010 Tanuki Software, Ltd. License: wrapper-community-license-1.1 ---------------------------------------------------------------------- ----------------- ----------------- Tanuki Software, Ltd. Community Software License Agreement Version 1.1 . IMPORTANT-READ CAREFULLY: This license agreement is a legal agreement between you ("Licensee") and Tanuki Software, Ltd. ("TSI"), which includes computer software, associated media, printed materials, and may include online or electronic documentation ( Software ). PLEASE READ THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR USE THE SOFTWARE ACCOMPANYING THIS PACKAGE. . Section 1 - Grant of License . Community editions of the Software are made available on the GNU General Public License, Version 2 ("GPLv2"), included in Section 4 of this license document. All sections of the Community Software License Agreement must be complied with in addition to those of the GPLv2. . . Section 2 - Definitions . 2.1. "Community Edition" shall mean versions of the Software Program distributed in source form under this license agreement, and all new releases, corrections, enhancements and updates to the Software Program, which TSI makes generally available under this agreement. . 2.2. "Documentation" shall mean the contents of the website describing the functionality and use of the Software Program, located at http://wrapper.tanukisoftware.org . 2.3. "Product" shall mean the computer programs, that are provided by Licensee to Licensee customers or potential customers, and that contain both the Software Program as a component of the Product, and a component or components (other than the Software Program) that provide the material functionality of the Product. If the Product is released in source form, the Software Program or any of its components may only be included in executable form. . 2.4. "Software Program" shall mean the computer software and license file provided by TSI under this Agreement, including all new releases, corrections, enhancements and updates to such computer software, which TSI makes generally available and which Licensee receive pursuant to Licensee subscription to TSIMS. Some specific features or platforms may not be enabled if they do not fall under the feature set(s) covered by the specific license fees paid. . 2.5 "End User" shall mean the customers of the Licensee or any recipient of the Product whether or not any payment is made to use the Product. . . Section 3 - Licensee Obligations . A copy of this license must be distributed in full with the Product in a location that is obvious to any End User. . In accordance with Section 4, the full source code of all components of the Product must be made available to any and all End Users. . Licensee may extend and/or modify the Software Program and distribute under the terms of this agreement provided that the copyright notice and license information displayed in the console and log files are not obfuscated or obstructed in any way. . . Section 4 - GPLv2 License Agreement On Debian systems, the complete text of the GNU General Public License can be found in "/usr/share/common-licenses/GPL-2". . Section 4 - 3rd Party Components . (1) The Software Program includes software and documentation components developed in part by Silver Egg Technology, Inc.("SET") prior to 2001 and released under the following license. . Copyright (c) 2001 Silver Egg Technology . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sub-license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: debian/* Copyright: 2010-2011 Rémi Debay 2011-2013 tony mancill 2011-2013 Kill Your TV Comment: Kill Your TV's packaging is released under the WTFPL. Since this license is so permissive, those contributions to Debian packaging are relicensed as GPL-2+. License: GPL-2+ 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; either version 2 of the License, or (at your option) any later version. . 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 program. If not, see . . On Debian systems, the complete text of the GNU General Public License can be found in "/usr/share/common-licenses/GPL-2".