From dd0c756cbce9c501980d514afb01b4e54b6ca1ac Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sun, 17 Jun 2012 23:26:20 +0000 Subject: [PATCH] Add .deb package build files from nyet. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@209 13b04d17-f746-0410-82c6-800466cd88b0 --- debian/changelog | 5 ++++ debian/compat | 1 + debian/control | 15 +++++++++++ debian/copyright | 65 ++++++++++++++++++++++++++++++++++++++++++++++++ debian/docs | 14 +++++++++++ debian/rules | 19 ++++++++++++++ 6 files changed, 119 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0f8c111 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +bitchx (1.2c01-svn-1) unstable; urgency=low + + * Initial release + + -- Nye Liu Thu, 10 May 2012 19:03:28 -0800 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..9485475 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: bitchx +Section: net +Priority: optional +Maintainer: Nye Liu +Build-Depends: debhelper (>= 8.0.0), libncurses5-dev, libssl-dev +Standards-Version: 3.9.2 +Homepage: https://sourceforge.net/projects/bitchx/ +#Vcs-Git: git://git.debian.org/collab-maint/bitchx.git +#Vcs-Browser: http://git.debian.org/?p=collab-maint/bitchx.git;a=summary + +Package: bitchx +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: terminal based IRC client + BitchX (ircii-pana) is a terminal based IRC client for UNIX systems. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b1b3d77 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,65 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: bitchx +Upstream-Contact: +Source: https://sourceforge.net/projects/bitchx/ + +Files: * +Copyright: 1990 Michael Sandroff + 1991-1992 Troy Rollo + 1992-1996 Matthew Green + 1993-1998 Jeremy Nelson and others ("EPIC Software Labs"). + 1994 Jake Khuon + 1996-2004 Colten Edwards et al. + 2008-2012 Kevin Easton et al. +License: BSD + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The names of the author(s) may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +Files: dll/europa/* +Copyright: 1999 Ed Schlunder +License: GPL-2+ + This is free software distributable under the terms of the GNU GPL-- See + the file COPYING for details. + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + +Files: debian/* +Copyright: 2012 Nye Liu +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 version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..16870c6 --- /dev/null +++ b/debian/docs @@ -0,0 +1,14 @@ +README +README-1.2 +IPv6-support +doc/BitchX.devel +doc/BitchX.doc +doc/BitchX.faq +doc/BitchX.mailinglist +doc/BitchX.sites +doc/botlink.txt +doc/entire-faq.html +doc/functions.txt +doc/hooks.txt +doc/mirc-colors.txt +doc/plugins.txt diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..358ba1d --- /dev/null +++ b/debian/rules @@ -0,0 +1,19 @@ +#!/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 + +override_dh_auto_configure: + dh_auto_configure -- --enable-ipv6 --with-ssl --with-plugins + +override_dh_compress: + dh_compress --exclude=.bz2 + +%: + dh $@ --builddirectory=build