update debian files

This commit is contained in:
jsorg71 2006-08-07 03:27:33 +00:00
parent ffce76ed5c
commit db00895721
7 changed files with 16 additions and 9 deletions

4
debian/changelog vendored
View File

@ -1,8 +1,8 @@
xrdp (0.2) unstable; urgency=low
xrdp (0.3.1) unstable; urgency=low
* Initial Release.
-- Jay Sorg <jay.sorg@gmail.com> Sat, 18 Feb 2006 13:58:29 -0600
-- Jay Sorg <jay.sorg@gmail.com> Sat, 6 August 2006 13:58:29 -0600
Local variables:
mode: debian-changelog

4
debian/control vendored
View File

@ -1,8 +1,8 @@
Source: xrdp
Section: net
Priority: optional
Maintainer: Jay Sorg <jay.sorg@gmail.com>
Build-Depends: debhelper (>= 4.0.0)
Maintainer: Jay Sorg <jay.sorg@gmail.com>, Per Hansen <spamhans@yahoo.de>
Build-Depends: debhelper (>= 4.0.0) libssl-dev, libpam0g-dev
Standards-Version: 3.6.0
Package: xrdp

4
debian/copyright vendored
View File

@ -1,10 +1,10 @@
This is xrdp, written and maintained by Jay Sorg <jay.sorg@gmail.com>
on Sat, 18 Feb 2006 13:58:29 -0600.
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 Jay Sorg
Copyright (C) 2003-2006 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

2
debian/dirs vendored
View File

@ -1,2 +1,2 @@
usr/xrdp
usr/lib/xrdp
etc/xrdp

2
debian/preinst vendored
View File

@ -1,4 +1,4 @@
#!/bin/sh
if [ -e /usr/xrdp/xrdp ]; then
if [ -e /usr/lib/xrdp/xrdp ]; then
/etc/init.d/xrdp_control.sh stop
fi

2
debian/prerm vendored
View File

@ -1,4 +1,4 @@
#!/bin/sh
if [ -e /usr/xrdp/xrdp ]; then
if [ -e /usr/lib/xrdp ]; then
/etc/init.d/xrdp_control.sh stop
fi

7
debian/readme.txt vendored Normal file
View File

@ -0,0 +1,7 @@
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
dpkg --build
Jay