Mercurial > 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 wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/changelog Thu Jun 05 21:08:04 2008 +0200 @@ -0,0 +1,6 @@ +genwebgallery (0.7-1) unstable; urgency=low + + * Initial release + * Closes: bug#484597 + + -- markus schnalke <meillo@marmaro.de> Thu, 05 Jun 2008 20:58:34 +0200
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/compat Thu Jun 05 21:08:04 2008 +0200 @@ -0,0 +1,1 @@ +7
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/control Thu Jun 05 21:08:04 2008 +0200 @@ -0,0 +1,18 @@ +Source: genwebgallery +Section: web +Priority: extra +Maintainer: markus schnalke <meillo@marmaro.de> +Homepage: http://prog.marmaro.de/genwebgallery +Build-Depends: debhelper (>= 7) +Standards-Version: 3.7.3 + +Package: genwebgallery +Architecture: all +Depends: imagemagick, awk +Description: generates minimalistic web galleries + Very simple tool to generate static HTML pages to view pictures on the web. + The generated pages are not very beautiful, but simple. They contain just + what is really needed - no fancy stuff. Also the generation process is only + one program call. You can specify some configuration options like the + dimension of the created thumbnails, the name of the index page and some more. + All image processing is done via ImageMagick.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/copyright Thu Jun 05 21:08:04 2008 +0200 @@ -0,0 +1,26 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Debianized-By: markus schnalke <meillo@marmaro.de> +Debianized-Date: Thu, 05 Jun 2008 20:59:55 +0200 +Original-Source: http://prog.marmaro.de/genwebgallery + +Files: * +Copyright: 2007, 2008 by markus schnalke <meillo@marmaro.de> +License: MIT + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rules Thu Jun 05 21:08:04 2008 +0200 @@ -0,0 +1,43 @@ +#!/usr/bin/make -f + + +.PHONY: build +build: + + +.PHONY: clean +clean: + dh_testdir + dh_testroot + dh_clean + + +.PHONY: install +install: + dh_testdir + dh_testroot + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/genwebgallery install + + +.PHONY: binary-indep +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + + +.PHONY: binary-arch +binary-arch: + + +.PHONY: binary +binary: binary-indep binary-arch