clamav: add version 0.95.3
authorRoman I Khimov <khimov@altell.ru>
Tue, 30 Mar 2010 12:42:47 +0000 (16:42 +0400)
committerRoman I Khimov <khimov@altell.ru>
Tue, 30 Mar 2010 17:42:08 +0000 (21:42 +0400)
Signed-off-by: Roman I Khimov <khimov@altell.ru>
recipes/clamav/clamav-0.95.3/clamav-fix-_SC_PAGESIZE-missing.patch [new file with mode: 0644]
recipes/clamav/clamav.inc
recipes/clamav/clamav_0.95.3.bb [new file with mode: 0644]

diff --git a/recipes/clamav/clamav-0.95.3/clamav-fix-_SC_PAGESIZE-missing.patch b/recipes/clamav/clamav-0.95.3/clamav-fix-_SC_PAGESIZE-missing.patch
new file mode 100644 (file)
index 0000000..5a33125
--- /dev/null
@@ -0,0 +1,50 @@
+From: Török Edvin <edwin@clamav.net>
+Date: Thu, 1 Oct 2009 13:18:32 +0000 (+0300)
+Subject: Fix build when git is not installed and using BSD make.
+X-Git-Url: http://git.clamav.net/gitweb?p=clamav-devel.git;a=commitdiff_plain;h=6238a5ca06c07931b2f6ace62601ef43807df8e2;hp=55d97736bd289b53c93b652d88e5acd1886ec1bc
+
+Fix build when git is not installed and using BSD make.
+---
+
+diff --git a/libclamav/Makefile.am b/libclamav/Makefile.am
+index 3ced7ff..7a267a0 100644
+--- a/libclamav/Makefile.am
++++ b/libclamav/Makefile.am
+@@ -304,8 +304,8 @@ version.h: version.h.tmp
+ version.h.tmp:
+       @test -f version.h || touch version.h;\
+       rm -f $@;\
+-      REVISION="$$(LANG=C cd "$(top_srcdir)"; git describe --always 2>/dev/null)";\
+-      if test $$? -ne 0; then\
++      REVISION="$$(LANG=C cd "$(top_srcdir)"; git describe --always 2>/dev/null || echo "exported")";\
++      if test "$$REVISION" = "exported"; then\
+          REVISION="r$$(LANG=C svnversion "$(top_srcdir)" 2>/dev/null || echo exported)";\
+          if test "$$REVISION" = "rexported"; then\
+           REVISION="";\
+diff --git a/libclamav/Makefile.in b/libclamav/Makefile.in
+index 8420601..a031c14 100644
+--- a/libclamav/Makefile.in
++++ b/libclamav/Makefile.in
+@@ -1832,8 +1832,8 @@ version.h: version.h.tmp
+ version.h.tmp:
+       @test -f version.h || touch version.h;\
+       rm -f $@;\
+-      REVISION="$$(LANG=C cd "$(top_srcdir)"; git describe --always 2>/dev/null)";\
+-      if test $$? -ne 0; then\
++      REVISION="$$(LANG=C cd "$(top_srcdir)"; git describe --always 2>/dev/null || echo "exported")";\
++      if test "$$REVISION" = "exported"; then\
+          REVISION="r$$(LANG=C svnversion "$(top_srcdir)" 2>/dev/null || echo exported)";\
+          if test "$$REVISION" = "rexported"; then\
+           REVISION="";\
+diff --git a/libclamav/others.h b/libclamav/others.h
+index 42ca636..ed313d8 100644
+--- a/libclamav/others.h
++++ b/libclamav/others.h
+@@ -29,6 +29,7 @@
+ #include <stdio.h>
+ #include <stdlib.h>
++#include <unistd.h>
+ #include "cltypes.h"
+ #include "clamav.h"
index 99ce1a2..405e3c7 100644 (file)
@@ -20,7 +20,7 @@ RPROVIDES_${PN}-freshclam = "${PN}-data"
 
 INC_PR = "r2"
 
-SRC_URI = "${SOURCEFORGE_MIRROR}/clamav/clamav-${PV}.tar.gz \
+SRC_URI = "${SOURCEFORGE_MIRROR}/clamav/clamav-${PV}.tar.gz;name=clamav-${PV} \
           file://clamav-daemon.init \
           file://clamav-freshclam.init \
           file://clamd.conf \
diff --git a/recipes/clamav/clamav_0.95.3.bb b/recipes/clamav/clamav_0.95.3.bb
new file mode 100644 (file)
index 0000000..4e510f5
--- /dev/null
@@ -0,0 +1,15 @@
+require clamav.inc
+
+SRC_URI += "file://clamav-fix-_SC_PAGESIZE-missing.patch;patch=1"
+
+SRC_URI[clamav-0.95.3.md5sum] = "eaf9fccc3cc3567605a9732313652967"
+SRC_URI[clamav-0.95.3.sha256sum] = "003e7a570932fdffbd19fa7a7996274fbfc93f890d26c3066a36eb824c906250"
+
+EXTRA_OECONF += "--program-transform-name=''"
+
+PR = "${INC_PR}.1"
+
+do_install_append() {
+       # Remove deprecated options
+       sed -ri "/Archive(Block)?Max/d" ${D}/${sysconfdir}/clamd.conf
+}
\ No newline at end of file