debian/genwebgallery-debian
changeset 0:4bd8e5e91de9
inital commit of debian dir of genwebgallery
earlier versioning is in genwebgallery
author | meillo@marmaro.de |
---|---|
date | Thu, 05 Jun 2008 21:08:04 +0200 |
parents | |
children | 67aae71a35a7 |
files | changelog compat control copyright rules watch |
diffstat | 6 files changed, 97 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/changelog Thu Jun 05 21:08:04 2008 +0200 1.3 @@ -0,0 +1,6 @@ 1.4 +genwebgallery (0.7-1) unstable; urgency=low 1.5 + 1.6 + * Initial release 1.7 + * Closes: bug#484597 1.8 + 1.9 + -- markus schnalke <meillo@marmaro.de> Thu, 05 Jun 2008 20:58:34 +0200
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/compat Thu Jun 05 21:08:04 2008 +0200 2.3 @@ -0,0 +1,1 @@ 2.4 +7
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/control Thu Jun 05 21:08:04 2008 +0200 3.3 @@ -0,0 +1,18 @@ 3.4 +Source: genwebgallery 3.5 +Section: web 3.6 +Priority: extra 3.7 +Maintainer: markus schnalke <meillo@marmaro.de> 3.8 +Homepage: http://prog.marmaro.de/genwebgallery 3.9 +Build-Depends: debhelper (>= 7) 3.10 +Standards-Version: 3.7.3 3.11 + 3.12 +Package: genwebgallery 3.13 +Architecture: all 3.14 +Depends: imagemagick, awk 3.15 +Description: generates minimalistic web galleries 3.16 + Very simple tool to generate static HTML pages to view pictures on the web. 3.17 + The generated pages are not very beautiful, but simple. They contain just 3.18 + what is really needed - no fancy stuff. Also the generation process is only 3.19 + one program call. You can specify some configuration options like the 3.20 + dimension of the created thumbnails, the name of the index page and some more. 3.21 + All image processing is done via ImageMagick.
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/copyright Thu Jun 05 21:08:04 2008 +0200 4.3 @@ -0,0 +1,26 @@ 4.4 +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat 4.5 +Debianized-By: markus schnalke <meillo@marmaro.de> 4.6 +Debianized-Date: Thu, 05 Jun 2008 20:59:55 +0200 4.7 +Original-Source: http://prog.marmaro.de/genwebgallery 4.8 + 4.9 +Files: * 4.10 +Copyright: 2007, 2008 by markus schnalke <meillo@marmaro.de> 4.11 +License: MIT 4.12 + Permission is hereby granted, free of charge, to any person obtaining 4.13 + a copy of this software and associated documentation files (the 4.14 + "Software"), to deal in the Software without restriction, including 4.15 + without limitation the rights to use, copy, modify, merge, publish, 4.16 + distribute, sublicense, and/or sell copies of the Software, and to 4.17 + permit persons to whom the Software is furnished to do so, subject to 4.18 + the following conditions: 4.19 + . 4.20 + The above copyright notice and this permission notice shall be included 4.21 + in all copies or substantial portions of the Software. 4.22 + . 4.23 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 4.24 + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 4.25 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 4.26 + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 4.27 + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 4.28 + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 4.29 + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/rules Thu Jun 05 21:08:04 2008 +0200 5.3 @@ -0,0 +1,43 @@ 5.4 +#!/usr/bin/make -f 5.5 + 5.6 + 5.7 +.PHONY: build 5.8 +build: 5.9 + 5.10 + 5.11 +.PHONY: clean 5.12 +clean: 5.13 + dh_testdir 5.14 + dh_testroot 5.15 + dh_clean 5.16 + 5.17 + 5.18 +.PHONY: install 5.19 +install: 5.20 + dh_testdir 5.21 + dh_testroot 5.22 + dh_installdirs 5.23 + $(MAKE) DESTDIR=$(CURDIR)/debian/genwebgallery install 5.24 + 5.25 + 5.26 +.PHONY: binary-indep 5.27 +binary-indep: install 5.28 + dh_testdir 5.29 + dh_testroot 5.30 + dh_installchangelogs ChangeLog 5.31 + dh_installdocs 5.32 + dh_installman 5.33 + dh_compress 5.34 + dh_fixperms 5.35 + dh_installdeb 5.36 + dh_gencontrol 5.37 + dh_md5sums 5.38 + dh_builddeb 5.39 + 5.40 + 5.41 +.PHONY: binary-arch 5.42 +binary-arch: 5.43 + 5.44 + 5.45 +.PHONY: binary 5.46 +binary: binary-indep binary-arch