--- sword-text-gerlut1545-1.2.orig/debian/changelog +++ sword-text-gerlut1545-1.2/debian/changelog @@ -0,0 +1,13 @@ +sword-text-gerlut1545 (1.2-0ubuntu2) gutsy; urgency=low + + * debian/control: Update maintainer fields according to debian- + maintainer-field spec. + + -- Martin Pitt Wed, 15 Aug 2007 08:10:19 +0000 + +sword-text-gerlut1545 (1.2-0ubuntu1) edgy; urgency=low + + * Initial release + + -- Robert K. Day Sat, 26 Aug 2006 18:33:59 +0100 + --- sword-text-gerlut1545-1.2.orig/debian/compat +++ sword-text-gerlut1545-1.2/debian/compat @@ -0,0 +1 @@ +5 --- sword-text-gerlut1545-1.2.orig/debian/control +++ sword-text-gerlut1545-1.2/debian/control @@ -0,0 +1,20 @@ +Source: sword-text-gerlut1545 +Section: universe/text +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Robert K. Day +Build-Depends: debhelper (>= 5.0.0), unzip +Standards-Version: 3.7.2 + +Package: sword-text-gerlut1545 +Architecture: all +Suggests: bibletime|gnomesword|kio-sword +Provides: sword-text +Enhances: sword-frontend +Description: SWORD module of Martin Luther's 1545 German Bible + This is Martin Luther's German 1545 Version of the Holy Bible. + . + This package contains data that requires a viewer to be seen properly, such as + GnomeSword, BibleTime or Kio-Sword. + . + Homepage: http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=GerLut1545 --- sword-text-gerlut1545-1.2.orig/debian/copyright +++ sword-text-gerlut1545-1.2/debian/copyright @@ -0,0 +1,19 @@ +This package was debianized by Robert K. Day on +Sat, 26 Aug 2006 18:33:59 +0100. + +It was downloaded from http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=GerLut1545 + +Copyright Holder: This package is in the public domain and as such has no copyright holder + +License: + +Public Domain + +Martin Luther's German 1545 Bible is maintained by Michael Bolsinger at http://www.luther-bibel-1545.de. + +The Sword module is maintained by Joachim and Matthias Ansorg (joachim at ansorgs dot de). +Please identify this as the source of derived works. + +The text as distributed is in a compressed format. You can use the mod2imp, +mod2osis or mod2vpl commands from the libsword package in order to extract the +text into an uncompressed form. --- sword-text-gerlut1545-1.2.orig/debian/rules +++ sword-text-gerlut1545-1.2/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + unzip -o GerLut1545.zip + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + rm -rf mods.d modules + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + dh_install mods.d usr/share/sword + dh_install modules usr/share/sword + + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure