Codebase list xrdp / upstream/0.4.0.dfsg
Make source dfsg clean Vincent Bernat 16 years ago
13 changed file(s) with 0 addition(s) and 172 deletion(s). Raw diff Collapse all Expand all
+0
-9
debian/changelog less more
0 xrdp (0.3.1) unstable; urgency=low
1
2 * Initial Release.
3
4 -- Jay Sorg <jay.sorg@gmail.com> Sat, 6 August 2006 13:58:29 -0600
5
6 Local variables:
7 mode: debian-changelog
8 End:
+0
-1
debian/compat less more
0 4
+0
-13
debian/control less more
0 Source: xrdp
1 Section: net
2 Priority: optional
3 Maintainer: Jay Sorg <jay.sorg@gmail.com>, Per Hansen <spamhans@yahoo.de>
4 Build-Depends: debhelper (>= 4.0.0) libssl-dev, libpam0g-dev
5 Standards-Version: 3.6.0
6
7 Package: xrdp
8 Architecture: i386
9 Depends: ${shlibs:Depends}, ${misc:Depends}
10 Description: <An open source remote desktop protocol(rdp) server.>
11 Based on the work of rdesktop, xrdp uses the remote desktop
12 protocol to present a GUI to the user.
+0
-25
debian/copyright less more
0 This is xrdp, written and maintained by Jay Sorg <jay.sorg@gmail.com>
1 on Sat, 06 August 2006 13:58:29 -0600.
2
3 The original source can always be found at:
4 ftp://ftp.debian.org/dists/unstable/main/source/
5
6 Copyright (C) 2003-2007 Jay Sorg
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this package; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA.
22
23 On Debian systems, the complete text of the GNU General
24 Public License can be found in `/usr/share/common-licenses/GPL'.
+0
-2
debian/dirs less more
0 usr/lib/xrdp
1 etc/xrdp
+0
-0
debian/docs less more
(Empty file)
+0
-2
debian/postinst less more
0 #!/bin/sh
1 update-rc.d xrdp_control.sh defaults > /dev/null
+0
-2
debian/postrm less more
0 #!/bin/sh
1 update-rc.d -f xrdp_control.sh remove > /dev/null
+0
-6
debian/preinst less more
0 #!/bin/sh
1 if [ -e /usr/lib/xrdp/xrdp ]; then
2 if [ -e /etc/init.d/xrdp_control.sh ]; then
3 /etc/init.d/xrdp_control.sh stop
4 fi
5 fi
+0
-6
debian/prerm less more
0 #!/bin/sh
1 if [ -e /usr/lib/xrdp ]; then
2 if [ -e /etc/init.d/xrdp_control.sh ]; then
3 /etc/init.d/xrdp_control.sh stop
4 fi
5 fi
+0
-8
debian/readme.txt less more
0 This is the debian directory used to make a .deb file to install
1 xrdp. It installs to /usr/lib/xrdp.
2
3 To make a new deb type
4 remember, debian/rules must be executable
5 fakeroot dpkg-buildpackage -b -uc -us -d
6
7 Jay
+0
-98
debian/rules less more
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2 # Sample debian/rules that uses debhelper.
3 # GNU copyright 1997 to 1999 by Joey Hess.
4
5 # Uncomment this to turn on verbose mode.
6 #export DH_VERBOSE=1
7
8
9
10
11 CFLAGS = -Wall -g
12
13 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
14 CFLAGS += -O0
15 else
16 CFLAGS += -O2
17 endif
18 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
19 INSTALL_PROGRAM += -s
20 endif
21
22 configure: configure-stamp
23 configure-stamp:
24 dh_testdir
25 # Add here commands to configure the package.
26
27 touch configure-stamp
28
29
30 build: build-stamp
31
32 build-stamp: configure-stamp
33 dh_testdir
34
35 # Add here commands to compile the package.
36 $(MAKE)
37 #/usr/bin/docbook-to-man debian/xrdp.sgml > xrdp.1
38
39 touch build-stamp
40
41 clean:
42 dh_testdir
43 dh_testroot
44 rm -f build-stamp configure-stamp
45
46 # Add here commands to clean up after the build process.
47 -$(MAKE) clean
48
49 dh_clean
50
51 install: build
52 dh_testdir
53 dh_testroot
54 dh_clean -k
55 dh_installdirs
56
57 # Add here commands to install the package into debian/xrdp.
58 $(MAKE) installdeb DESTDIRDEB=$(CURDIR)/debian/xrdp
59
60
61 # Build architecture-independent files here.
62 binary-indep: build install
63 # We have nothing to do by default.
64
65 # Build architecture-dependent files here.
66 binary-arch: build install
67 dh_testdir
68 dh_testroot
69 dh_installchangelogs
70 dh_installdocs
71 dh_installexamples
72 # dh_install
73 # dh_installmenu
74 # dh_installdebconf
75 # dh_installlogrotate
76 # dh_installemacsen
77 # dh_installpam
78 # dh_installmime
79 # dh_installinit
80 # dh_installcron
81 # dh_installinfo
82 dh_installman
83 dh_link
84 dh_strip
85 dh_compress
86 dh_fixperms
87 # dh_perl
88 # dh_python
89 # dh_makeshlibs
90 dh_installdeb
91 dh_shlibdeps
92 dh_gencontrol
93 dh_md5sums
94 dh_builddeb
95
96 binary: binary-indep binary-arch
97 .PHONY: build clean binary-indep binary-arch binary install configure
xrdp/Tahoma-10.fv1 less more
Binary diff not shown