Changeset 209
- Timestamp:
- Jan 26, 2009, 10:09:45 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/COPYING
r171 r209 3 3 ------------------------------------------ 4 4 5 Copyright (C) 1999-200 4Rainer Wichmann5 Copyright (C) 1999-2009 Rainer Wichmann 6 6 7 7 This program is free software; you can redistribute it and/or modify … … 17 17 You should have received a copy of the GNU General Public License 18 18 along with this program; if not, write to the Free Software 19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 20 20 21 21 … … 101 101 * along with the LZO library; see the file COPYING. 102 102 * If not, write to the Free Software Foundation, Inc., 103 * 5 9 Temple Place - Suite 330, Boston, MA 02111-1307, USA.103 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 104 104 * 105 105 * Markus F.X.J. Oberhumer … … 125 125 You should have received a copy of the GNU General Public License 126 126 along with this program; if not, write to the Free Software 127 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*/127 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ 128 128 129 129 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */ … … 152 152 * You should have received a copy of the GNU General Public License 153 153 * along with this program; if not, write to the Free Software Foundation, 154 * Inc., 5 9 Temple Place - Suite 330, Boston, MA 02111-1307, USA.154 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 155 155 */ 156 156 … … 169 169 * country of residence. 170 170 * 171 * Adapted to pike and some cleanup by Niels M öller.171 * Adapted to pike and some cleanup by Niels Möller. 172 172 */ 173 173 … … 203 203 * You should have received a copy of the GNU Library General Public 204 204 * License along with this library; if not, write to the Free 205 * Foundation, Inc., 5 9 Temple Place, Suite 330, Boston, MA 02111-1307USA205 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 206 206 * 207 207 * The author of this library can be reached at the following address: -
trunk/Makefile.in
r197 r209 864 864 echo " and how it can be used to check the file integrity of your" >> debian/@install_name@.doc-base; \ 865 865 echo " server." >> debian/@install_name@.doc-base; \ 866 echo "Section: admin" >> debian/@install_name@.doc-base; \866 echo "Section: System/Security" >> debian/@install_name@.doc-base; \ 867 867 echo >> debian/@install_name@.doc-base; \ 868 868 echo >> debian/@install_name@.doc-base; \ 869 869 echo "Format: Postscript" >> debian/@install_name@.doc-base; \ 870 echo "Files: /usr/share/doc/@install_name@/manual.p s.gz" >> debian/@install_name@.doc-base; \870 echo "Files: /usr/share/doc/@install_name@/manual.pdf.gz" >> debian/@install_name@.doc-base; \ 871 871 echo >> debian/@install_name@.doc-base; \ 872 872 echo "Format: HTML" >> debian/@install_name@.doc-base; \ 873 873 echo "Index: /usr/share/doc/@install_name@/manual.html/index.html" >> debian/@install_name@.doc-base; \ 874 874 echo "Files: /usr/share/doc/@install_name@/manual.html/*.html" >> debian/@install_name@.doc-base; \ 875 echo @myrpmconffile@ > debian/conffiles; \876 echo /etc/init.d/@install_name@ >> debian/conffiles; \877 875 if test -f /usr/lib/lsb/install_initd; then \ 878 876 cp init/samhain.startLSB debian/@install_name@.init; \ … … 888 886 echo "Package: @install_name@" >> debian/control; \ 889 887 echo "Architecture: any" >> debian/control; \ 890 echo "Depends: \$${shlibs:Depends}" >> debian/control; \888 echo "Depends: libc6" >> debian/control; \ 891 889 echo "Description: File integrity checker" >> debian/control; \ 892 890 echo " A file integrity checker" >> debian/control; \ 893 891 echo "running debuild -us -uc"; \ 894 debuild -us -uc ; \892 debuild -us -uc -b; \ 895 893 DEBFILE=`find ../ -follow -maxdepth 1 -cnewer ./debian/control 2>/dev/null | grep '@install_name@_$(VERSION)' | grep '\.deb'`; \ 896 894 if test x"$$DEBFILE" = x; then \ -
trunk/configure.ac
r208 r209 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 2.5.2 )14 AM_INIT_AUTOMAKE(samhain, 2.5.2a) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST -
trunk/docs/Changelog
r208 r209 1 2.5.2a (26-01-2009): 2 * fix problem building deb package (bit rot; reported by joerg) 3 1 4 2.5.2 (22-01-2009): 2 5 * samhain.c: report module failure with positive offset -
trunk/rules.deb-light.in
r79 r209 12 12 13 13 # This is the debhelper compatability version to use. 14 export DH_COMPAT= 114 export DH_COMPAT=4 15 15 16 16 package=@install_name@ … … 42 42 dh_installdirs 43 43 44 $(MAKE) install-light install-boot DESTDIR=`pwd`/debian/tmp 44 $(MAKE) install-light install-boot DESTDIR=`pwd`/debian/@install_name@ 45 # $(MAKE) install-light install-boot DESTDIR=`pwd`/debian/tmp 45 46 46 47 # However, remove the rc.d links … … 64 65 dh_installmenu 65 66 dh_installinit -- defaults 19 66 [ -f debian/ postinst.debhelper ] && \67 [ -f debian/@install_name@.postinst.debhelper ] && \ 67 68 cd debian && \ 68 cat postinst.debhelper | \69 cat @install_name@.postinst.debhelper | \ 69 70 sed 's%/etc/init.d/@install_name@ start%:%' > postinst.tmp && \ 70 mv postinst.tmp postinst.debhelper71 [ -f debian/ postinst.debhelper ] && \71 mv postinst.tmp @install_name@.postinst.debhelper 72 [ -f debian/@install_name@.postinst.debhelper ] && \ 72 73 cd debian && \ 73 cat postinst.debhelper | \74 cat @install_name@.postinst.debhelper | \ 74 75 sed 's%invoke-rc.d @install_name@ start%:%' > postinst.tmp && \ 75 mv postinst.tmp postinst.debhelper76 [ -f debian/ prerm.debhelper ] && \76 mv postinst.tmp @install_name@.postinst.debhelper 77 [ -f debian/@install_name@.prerm.debhelper ] && \ 77 78 cd debian && \ 78 cat prerm.debhelper | \79 cat @install_name@.prerm.debhelper | \ 79 80 sed 's%/etc/init.d/@install_name@ stop%/etc/init.d/@install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \ 80 mv prerm.tmp prerm.debhelper81 [ -f debian/ prerm.debhelper ] && \81 mv prerm.tmp @install_name@.prerm.debhelper 82 [ -f debian/@install_name@.prerm.debhelper ] && \ 82 83 cd debian && \ 83 cat prerm.debhelper | \84 cat @install_name@.prerm.debhelper | \ 84 85 sed 's%invoke-rc.d @install_name@ stop%invoke-rc.d @install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \ 85 mv prerm.tmp prerm.debhelper86 mv prerm.tmp @install_name@.prerm.debhelper 86 87 # dh_installmanpages 87 88 # dh_installchangelogs @top_srcdir@/docs/Changelog -
trunk/rules.deb.in
r79 r209 12 12 13 13 # This is the debhelper compatability version to use. 14 export DH_COMPAT= 114 export DH_COMPAT=4 15 15 16 16 package=@install_name@ … … 48 48 # `pwd`/debian/tmp/etc/samhain 49 49 50 $(MAKE) install install-boot DESTDIR=`pwd`/debian/tmp 50 # $(MAKE) install install-boot DESTDIR=`pwd`/debian/tmp 51 $(MAKE) install install-boot DESTDIR=`pwd`/debian/@install_name@ 51 52 52 53 # However, remove the rc.d links … … 70 71 dh_installdebconf 71 72 dh_installdocs 72 [ -f debian/ tmp/usr/share/doc/@install_name@/MANUAL-2_3.html.tar ] && \73 cd debian/ tmp/usr/share/doc/@install_name@ && \73 [ -f debian/@install_name@/usr/share/doc/@install_name@/MANUAL-2_3.html.tar ] && \ 74 cd debian/@install_name@/usr/share/doc/@install_name@ && \ 74 75 tar xf MANUAL-2_3.html.tar && mv MANUAL-2_3 manual.html && \ 75 rm -f MANUAL-2_3.html.tar 76 rm -f MANUAL-2_3.html.tar && \ 77 mv MANUAL-2_3.pdf manual.pdf 76 78 dh_installexamples @top_srcdir@/scripts/example_pager.pl \ 77 79 @top_srcdir@/scripts/example_sms.pl \ … … 84 86 dh_installmenu 85 87 dh_installinit -- defaults 19 86 [ -f debian/ postinst.debhelper ] && \88 [ -f debian/@install_name@.postinst.debhelper ] && \ 87 89 cd debian && \ 88 cat postinst.debhelper | \90 cat @install_name@.postinst.debhelper | \ 89 91 sed 's%/etc/init.d/@install_name@ start%:%' > postinst.tmp && \ 90 mv postinst.tmp postinst.debhelper91 [ -f debian/ postinst.debhelper ] && \92 mv postinst.tmp @install_name@.postinst.debhelper 93 [ -f debian/@install_name@.postinst.debhelper ] && \ 92 94 cd debian && \ 93 cat postinst.debhelper | \95 cat @install_name@.postinst.debhelper | \ 94 96 sed 's%invoke-rc.d @install_name@ start%:%' > postinst.tmp && \ 95 mv postinst.tmp postinst.debhelper96 [ -f debian/ prerm.debhelper ] && \97 mv postinst.tmp @install_name@.postinst.debhelper 98 [ -f debian/@install_name@.prerm.debhelper ] && \ 97 99 cd debian && \ 98 cat prerm.debhelper | \100 cat @install_name@.prerm.debhelper | \ 99 101 sed 's%/etc/init.d/@install_name@ stop%/etc/init.d/@install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \ 100 mv prerm.tmp prerm.debhelper101 [ -f debian/ prerm.debhelper ] && \102 mv prerm.tmp @install_name@.prerm.debhelper 103 [ -f debian/@install_name@.prerm.debhelper ] && \ 102 104 cd debian && \ 103 cat prerm.debhelper | \105 cat @install_name@.prerm.debhelper | \ 104 106 sed 's%invoke-rc.d @install_name@ stop%invoke-rc.d @install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \ 105 mv prerm.tmp prerm.debhelper107 mv prerm.tmp @install_name@.prerm.debhelper 106 108 # dh_installmanpages 107 109 dh_installchangelogs @top_srcdir@/docs/Changelog
Note:
See TracChangeset
for help on using the changeset viewer.