Changeset 531
- Timestamp:
- Dec 15, 2017, 9:54:09 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/COPYING
r209 r531 19 19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 20 20 21 On Debian-based systems, see /usr/share/common-licenses 21 22 22 23 Incorporated code -
trunk/Makefile.in
r528 r531 846 846 maintainer="$(DEFAULT_MAINTAINER)"; \ 847 847 fi; \ 848 echo "$(PACKAGE) ($(VERSION)-$(BUILD_NUM)) stable; urgency=low" > debian/changelog; \ 848 codename=`lsb_release -a 2>/dev/null | grep Codename | cut -f 2`; \ 849 if test "x$$codename" = x; then \ 850 codename="stable"; \ 851 fi; \ 852 echo "$(PACKAGE) ($(VERSION)-$(BUILD_NUM)) $$codename; urgency=low" > debian/changelog; \ 849 853 echo >> debian/changelog; \ 850 854 echo " * Initial release." >> debian/changelog; \ … … 856 860 echo "End:" >> debian/changelog; \ 857 861 cp $(top_srcdir)/COPYING debian/copyright; \ 858 touch debian/README.debian; \ 862 echo "9" > debian/compat; \ 863 echo "Nothing to see here." > debian/README.debian; \ 859 864 echo "Document: @install_name@-manual" > debian/@install_name@.doc-base; \ 860 865 echo "Title: @install_name@ Manual" >> debian/@install_name@.doc-base; \ … … 885 890 echo "Package: @install_name@" >> debian/control; \ 886 891 echo "Architecture: any" >> debian/control; \ 887 echo "Depends: libc6" >> debian/control; \892 echo "Depends: \$${shlibs:Depends}, \$${misc:Depends}" >> debian/control; \ 888 893 echo "Description: File integrity checker" >> debian/control; \ 889 894 echo " A file integrity checker" >> debian/control; \ … … 897 902 echo "Package $$DEBFILE built."; \ 898 903 cp $$DEBFILE ./$(PACKAGE)-$(VERSION)-$(BUILD_NUM).deb; \ 899 ln - s ./$(PACKAGE)-$(VERSION)-$(BUILD_NUM).deb ./$(PACKAGE)-$(VERSION).deb; \904 ln --backup=numbered -fs ./$(PACKAGE)-$(VERSION)-$(BUILD_NUM).deb ./$(PACKAGE)-$(VERSION).deb; \ 900 905 fi; \ 901 906 echo -
trunk/configure.ac
r529 r531 72 72 ;; 73 73 esac 74 ;; 74 LDFLAGS="${LDFLAGS} -Wl,--as-needed" 75 ;; 75 76 76 77 *osf*) -
trunk/docs/Changelog
r530 r531 2 2 * fix 'clobbered by..' compiler warning is src/sh_portcheck.c 3 3 * fix compiler warning because of deprecated _BSD_SOURCE macro 4 * fix 'make deb' for Debian stretch (reported by Alasdair) 4 5 5 6 4.2.3: -
trunk/init/samhain.startLSB.in
r481 r531 3 3 ### BEGIN INIT INFO 4 4 # Provides: @install_name@ 5 # Required-Start: $syslog $network 6 # Required-Stop: $syslog $network 5 # Required-Start: $syslog $network $remote_fs 6 # Required-Stop: $syslog $network $remote_fs 7 7 # Default-Start: 2 3 4 5 8 8 # Default-Stop: 0 1 6 -
trunk/init/samhain.startLinux.in
r521 r531 12 12 ### BEGIN INIT INFO 13 13 # Provides: @install_name@ 14 # Required-Start: $syslog $network 15 # Required-Stop: $syslog $network 14 # Required-Start: $syslog $network $remote_fs 15 # Required-Stop: $syslog $network $remote_fs 16 16 # Default-Start: 2 3 4 5 17 17 # Default-Stop: 0 1 6 -
trunk/rules.deb-light.in
r425 r531 12 12 13 13 # This is the debhelper compatability version to use. 14 export DH_COMPAT= 414 export DH_COMPAT=9 15 15 16 16 package=@install_name@ -
trunk/rules.deb.in
r481 r531 12 12 13 13 # This is the debhelper compatability version to use. 14 export DH_COMPAT= 414 export DH_COMPAT=9 15 15 16 16 package=@install_name@
Note:
See TracChangeset
for help on using the changeset viewer.