Changeset 179
- Timestamp:
- 05/09/09 21:57:34 (15 months ago)
- Location:
- debian/cutycapt/trunk
- Files:
-
- 6 added
- 3 modified
-
debian/compat (added)
-
debian/control (modified) (1 diff)
-
debian/copyright (modified) (2 diffs)
-
debian/docs (added)
-
debian/manpages (added)
-
debian/rules (modified) (3 diffs)
-
doc (added)
-
doc/CutyCapt.1 (added)
-
doc/index.html (added)
Legend:
- Unmodified
- Added
- Removed
-
debian/cutycapt/trunk/debian/control
r175 r179 5 5 Build-Depends: debhelper (>= 7), pkg-kde-tools (>= 0.4.2), qt4-qmake, libqt4-dev 6 6 Standards-Version: 3.8.1 7 Homepage: <insert the upstream URL, if relevant>7 Homepage: http://cutycapt.sourceforge.net/ 8 8 9 9 10 10 Package: cutycapt 11 11 Architecture: any 12 Depends: ${shlibs:Depends}, ${misc:Depends} 13 Description: <insert up to 60 chars description> 14 <insert long description, indented with spaces> 12 Depends: ${shlibs:Depends}, ${misc:Depends}, libqt4-webkit, libqt4-svg 13 Description: is a utility to render a web page to a image file (vector or bitmap) 14 CutyCapt capture WebKit's rendering of a web page ouput into a variety of 15 vector and bitmap formats, including SVG, PDF, PS, PNG, JPEG, TIFF, GIF, 16 and BMP. -
debian/cutycapt/trunk/debian/copyright
r175 r179 2 2 Sat, 09 May 2009 19:50:27 +0200. 3 3 4 It was downloaded from <url://example.com>4 It was downloaded from http://cutycapt.sourceforge.net/ 5 5 6 Upstream Author (s):6 Upstream Author: 7 7 8 <put author's name and email here> 9 <likewise for another author> 8 Bjoern Hoehrmann <bjoern@hoehrmann.de> 10 9 11 10 Copyright: 12 11 13 <Copyright (C) YYYY Name OfAuthor> 14 <likewise for another author> 12 Copyright (C) 2003-2008 Bjoern Hoehrmann 15 13 16 14 License: 17 15 18 <Put the license of the package here indented by 4 spaces> 16 cutycapt is covered under the GNU General Public License. 17 See `/usr/share/common-licenses/GPL' 19 18 20 19 The Debian packaging is: … … 25 24 see `/usr/share/common-licenses/GPL-3'. 26 25 27 # Please also look if there are files or directories which have a28 # different copyright/license attached and list them here. -
debian/cutycapt/trunk/debian/rules
r178 r179 1 1 #!/usr/bin/make -f 2 2 # -*- makefile -*- 3 # Sample debian/rules that uses debhelper.4 # This file was originally written by Joey Hess and Craig Small.5 # As a special exception, when this file is copied by dh-make into a6 # dh-make output file, you may use that output file without restriction.7 # This special exception was added by Craig Small in version 0.37 of dh-make.8 3 9 # Uncomment this to turn on verbose mode.10 4 #export DH_VERBOSE=1 11 12 13 14 15 5 16 6 configure: configure-stamp … … 27 17 dh_testdir 28 18 29 # Add here commands to compile the package.30 19 $(MAKE) 31 20 #docbook-to-man debian/cutycapt.sgml > cutycapt.1 … … 64 53 # Build architecture-dependent files here. 65 54 binary-arch: install 66 dh_testdir 67 dh_testroot 68 dh_installchangelogs 69 dh_installdocs 70 dh_installexamples 71 # dh_install 72 # dh_installmenu 73 # dh_installdebconf 74 # dh_installlogrotate 75 # dh_installemacsen 76 # dh_installpam 77 # dh_installmime 78 # dh_python 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_makeshlibs 89 dh_installdeb 90 dh_shlibdeps 91 dh_gencontrol 92 dh_md5sums 93 dh_builddeb 55 dh_testdir -A 56 dh_testroot -A 57 dh_installchangelogs -A 58 dh_installdocs -A 59 dh_installman -A 60 dh_link -A 61 dh_strip -A 62 dh_compress -A 63 dh_fixperms -A 64 dh_makeshlibs -A 65 dh_installdeb -A 66 dh_shlibdeps -A 67 dh_gencontrol -A 68 dh_md5sums -A 69 dh_builddeb -A 94 70 95 71 binary: binary-indep binary-arch
