X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fdh-make-gosa;h=4b85a9e53abac944c73c17cd4a7db3f1863cd1fa;hb=9e7961defd98dbdfafdb90713d0e44e2bb277dff;hp=532939bee6d36459adbbc12e3e69ef8b1067e48b;hpb=32953bf7eb78d02d63fac3799026957e48c9148d;p=gosa.git diff --git a/gosa-core/dh-make-gosa b/gosa-core/dh-make-gosa index 532939bee..4b85a9e53 100755 --- a/gosa-core/dh-make-gosa +++ b/gosa-core/dh-make-gosa @@ -164,16 +164,33 @@ if [ -d html ]; then done fi +# Fix copyright +sed -i '/^#/d;/^.*likewise for another author.*$/d' debian/copyright +year=$(date +%Y) +sed -i "s/.Copyright (C) YYYY Name OfAuthor./Copyright (C) $year $PL_AUTHOR/g" debian/copyright +sed -i "s/.url:\/\/example.com./http:\/\/www.gosa-project.org/g" debian/copyright +sed -i "/.put author's name and email here.\ +/d" debian/copyright +sed -i '/^Upstream/,/^$/d' debian/copyright + # Adapt control sed -i 's/^Section: unknown/Section: web/g' debian/control sed -i 's/^Architecture: any/Architecture: all/g' debian/control sed -i 's/^Depends: .*$/Depends: gosa/g' debian/control sed -i "s/^Description: .*$/Description: $PL_NAME plugin for GOsa/g" debian/control -sed -i "s/^ <.*$/ $PL_DESCRIPTION\ - .\ - GOsa is a combination of system-administrator and end-user web\ - interface, designed to handle LDAP based setups.\ -/g" debian/control +sed -i "s/^ <.*$/ %DESCRIPTION%/g" debian/control +dsc=$(tempfile) +{ +echo $PL_DESCRIPTION +cat < $dsc +sed -i "/%DESCRIPTION%/r $dsc" debian/control +sed -i "/%DESCRIPTION%/d" debian/control +rm $dsc # Adapt README.debian cat < debian/README.Debian @@ -186,6 +203,9 @@ Please read the main GOsa README.Debian file for more information. $PL_AUTHOR <$PL_MAIL> Fri 02 Jun 2006 16:23:50 +0200 EOF +# Fix README +sed -i "s/Comments regarding the Package/After installing this plugin you may need to reload apache../g" debian/README + # Fix rules cat < debian/rules #!/usr/bin/make -f @@ -233,12 +253,10 @@ binary-indep: build install dh_installexamples dh_install dh_installman - dh_link dh_strip dh_compress dh_fixperms dh_installdeb - dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb