From 26d35b652639d3f765ed0250686b2b70454880da Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Fri, 28 Mar 2008 06:21:15 +0000 Subject: [PATCH] remove debian directory --- debian/changelog | 9 ----- debian/compat | 1 - debian/control | 13 ------- debian/copyright | 25 ------------ debian/dirs | 2 - debian/docs | 0 debian/postinst | 2 - debian/postrm | 2 - debian/preinst | 6 --- debian/prerm | 6 --- debian/readme.txt | 8 ---- debian/rules | 98 ----------------------------------------------- 12 files changed, 172 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/compat delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/dirs delete mode 100644 debian/docs delete mode 100644 debian/postinst delete mode 100644 debian/postrm delete mode 100644 debian/preinst delete mode 100644 debian/prerm delete mode 100644 debian/readme.txt delete mode 100644 debian/rules diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index cd6afae4..00000000 --- a/debian/changelog +++ /dev/null @@ -1,9 +0,0 @@ -xrdp (0.3.1) unstable; urgency=low - - * Initial Release. - - -- Jay Sorg Sat, 6 August 2006 13:58:29 -0600 - -Local variables: -mode: debian-changelog -End: diff --git a/debian/compat b/debian/compat deleted file mode 100644 index b8626c4c..00000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/debian/control b/debian/control deleted file mode 100644 index baed8a4f..00000000 --- a/debian/control +++ /dev/null @@ -1,13 +0,0 @@ -Source: xrdp -Section: net -Priority: optional -Maintainer: Jay Sorg , Per Hansen -Build-Depends: debhelper (>= 4.0.0) libssl-dev, libpam0g-dev -Standards-Version: 3.6.0 - -Package: xrdp -Architecture: i386 -Depends: ${shlibs:Depends}, ${misc:Depends} -Description: - Based on the work of rdesktop, xrdp uses the remote desktop - protocol to present a GUI to the user. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 7adb8c52..00000000 --- a/debian/copyright +++ /dev/null @@ -1,25 +0,0 @@ -This is xrdp, written and maintained by Jay Sorg -on Sat, 06 August 2006 13:58:29 -0600. - -The original source can always be found at: - ftp://ftp.debian.org/dists/unstable/main/source/ - -Copyright (C) 2003-2007 Jay Sorg - - This program 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 program 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'. diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index 27522819..00000000 --- a/debian/dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/lib/xrdp -etc/xrdp diff --git a/debian/docs b/debian/docs deleted file mode 100644 index e69de29b..00000000 diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 7a4a5b78..00000000 --- a/debian/postinst +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -update-rc.d xrdp_control.sh defaults > /dev/null diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index deca14b0..00000000 --- a/debian/postrm +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -update-rc.d -f xrdp_control.sh remove > /dev/null diff --git a/debian/preinst b/debian/preinst deleted file mode 100644 index 4db03d17..00000000 --- a/debian/preinst +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -if [ -e /usr/lib/xrdp/xrdp ]; then - if [ -e /etc/init.d/xrdp_control.sh ]; then - /etc/init.d/xrdp_control.sh stop - fi -fi diff --git a/debian/prerm b/debian/prerm deleted file mode 100644 index 060c2d48..00000000 --- a/debian/prerm +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -if [ -e /usr/lib/xrdp ]; then - if [ -e /etc/init.d/xrdp_control.sh ]; then - /etc/init.d/xrdp_control.sh stop - fi -fi diff --git a/debian/readme.txt b/debian/readme.txt deleted file mode 100644 index 867843c7..00000000 --- a/debian/readme.txt +++ /dev/null @@ -1,8 +0,0 @@ -This is the debian directory used to make a .deb file to install -xrdp. It installs to /usr/lib/xrdp. - -To make a new deb type -remember, debian/rules must be executable -fakeroot dpkg-buildpackage -b -uc -us -d - -Jay diff --git a/debian/rules b/debian/rules deleted file mode 100644 index 48ff9b6e..00000000 --- a/debian/rules +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- -# 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 - - - - -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: configure-stamp - dh_testdir - - # Add here commands to compile the package. - $(MAKE) - #/usr/bin/docbook-to-man debian/xrdp.sgml > xrdp.1 - - touch build-stamp - -clean: - 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 - dh_installdirs - - # Add here commands to install the package into debian/xrdp. - $(MAKE) installdeb DESTDIRDEB=$(CURDIR)/debian/xrdp - - -# 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