summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2018-09-15 13:53:31 -0700
committerArmin Kuster <akuster808@gmail.com>2018-09-17 21:08:19 -0700
commit64153a0f5159d73e020ab2bfa072198ba13de2a1 (patch)
tree9c1415ab822b22514a4ab8aa5d2993fea0ecd99c
parent76ae9a21f78712c4d48acd365eef598c862b219b (diff)
downloadmeta-security-64153a0f5159d73e020ab2bfa072198ba13de2a1.tar.gz
forensics: drop all un supported pacakges
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--recipes-forensic/afflib/afflib_3.6.6.bb30
-rw-r--r--recipes-forensic/afflib/files/configure_rm_ms_flags.patch18
-rw-r--r--recipes-forensic/libewf/files/gcc5_fix.patch22
-rw-r--r--recipes-forensic/libewf/libewf_20140608.bb24
-rw-r--r--recipes-forensic/sleuth/files/fix_host_poison.patch23
-rw-r--r--recipes-forensic/sleuth/sleuthkit_4.1.3.bb31
6 files changed, 0 insertions, 148 deletions
diff --git a/recipes-forensic/afflib/afflib_3.6.6.bb b/recipes-forensic/afflib/afflib_3.6.6.bb
deleted file mode 100644
index a826d1d..0000000
--- a/recipes-forensic/afflib/afflib_3.6.6.bb
+++ /dev/null
@@ -1,30 +0,0 @@
1SUMMARY = "The Advanced Forensic Format (AFF) is on-disk format for storing computer forensic information."
2HOMEPAGE = "http://www.afflib.org/"
3LICENSE = " BSD-4-Clause & CPL-1.0"
4LIC_FILES_CHKSUM = "file://COPYING;md5=d1b2c6d0d6908f45d143ef6380727828"
5
6DEPENDS = " zlib ncurses readline openssl libgcrypt"
7
8SRC_URI = "http://archive.ubuntu.com/ubuntu/pool/universe/a/${BPN}/${BPN}_${PV}.orig.tar.gz;name=orig \
9 http://archive.ubuntu.com/ubuntu/pool/universe/a/${BPN}/${BPN}_${PV}-1.1.diff.gz;name=dpatch \
10 file://configure_rm_ms_flags.patch \
11 "
12
13SRC_URI[orig.md5sum] = "b7ff4d2945882018eb1536cad182ad01"
14SRC_URI[orig.sha256sum] = "19cacfd558dc00e11975e820e3c4383b52aabbd5ca081d27bb7994a035d2f4ad"
15SRC_URI[dpatch.md5sum] = "171e871024545b487589e6c85290576f"
16SRC_URI[dpatch.sha256sum] = "db632e254ee51a1e4328cd4449d414eff4795053d4e36bfa8e0020fcb4085cdd"
17
18inherit autotools-brokensep pkgconfig
19
20CPPFLAGS = "-I${STAGING_INCDIR}"
21LDFLAGS = "-L${STAGING_LIBDIR}"
22
23PACKAGECONFIG ??= ""
24PACKAGECONFIG[curl] = "--with-curl=${STAGING_LIBDIR}, --without-curl, curl"
25PACKAGECONFIG[expat] = "--with-expat=${STAGING_LIBDIR}, --without-expat, expat"
26PACKAGECONFIG[fuse] = "--enable-fuse=yes, --enable-fuse=no, fuse"
27PACKAGECONFIG[python] = "--enable-python=yes, --enable-python=no, python"
28
29EXTRA_OECONF += "--enable-s3=no CPPFLAGS=-I${STAGING_INCDIR} LDFLAGS=-L${STAGING_LIBDIR}"
30EXTRA_OEMAKE += "CPPFLAGS='${CPPFLAGS}' LDFLAGS='-L${STAGING_LIBDIR} -I${STAGING_INCDIR}'"
diff --git a/recipes-forensic/afflib/files/configure_rm_ms_flags.patch b/recipes-forensic/afflib/files/configure_rm_ms_flags.patch
deleted file mode 100644
index ac33500..0000000
--- a/recipes-forensic/afflib/files/configure_rm_ms_flags.patch
+++ /dev/null
@@ -1,18 +0,0 @@
1Upstream-Status: Inappropriate [configuration]
2
3remove ms lib options when cross compiling
4
5Signed-Off-By: Armin Kuster <akuster808@gmail.com>
6
7Index: configure.ac
8===================================================================
9--- a.orig/configure.ac
10+++ a/configure.ac
11@@ -47,7 +47,6 @@ if test x"${cross_compiling}" = "xno" ;
12 AC_MSG_NOTICE([ LDFLAGS = ${LDFLAGS} ])
13 else
14 AC_MSG_NOTICE([Cross Compiling --- will not update CPPFALGS or LDFLAGS with /usr/local, /opt/local or /sw])
15- LIBS="$LIBS -lws2_32 -lgdi32"
16 fi
17
18 if test -r /bin/uname.exe ; then
diff --git a/recipes-forensic/libewf/files/gcc5_fix.patch b/recipes-forensic/libewf/files/gcc5_fix.patch
deleted file mode 100644
index 0881f25..0000000
--- a/recipes-forensic/libewf/files/gcc5_fix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
1Upstream Status: pending
2
3Don't use inline with gcc 5.0
4
5fixes:
6undefined reference to `libuna_unicode_character_size_to_utf8'
7
8Signed-off-by: Armin Kuster <akuster808@gmail.com>
9
10Index: libuna/libuna_inline.h
11===================================================================
12--- a/libuna/libuna_inline.h
13+++ b/libuna/libuna_inline.h
14@@ -27,7 +27,7 @@
15 #if defined( _MSC_VER )
16 #define LIBUNA_INLINE _inline
17
18-#elif defined( __BORLANDC__ ) || defined( __clang__ )
19+#elif defined( __BORLANDC__ ) || defined( __clang__ ) || ( __GNUC__ > 4 )
20 #define LIBUNA_INLINE /* inline */
21
22 #else
diff --git a/recipes-forensic/libewf/libewf_20140608.bb b/recipes-forensic/libewf/libewf_20140608.bb
deleted file mode 100644
index f7dce12..0000000
--- a/recipes-forensic/libewf/libewf_20140608.bb
+++ /dev/null
@@ -1,24 +0,0 @@
1SUMMARY = "library with support for Expert Witness Compression Format"
2LICENSE = "LGPLv3+"
3LIC_FILES_CHKSUM = "file://COPYING;md5=58c39b26c0549f8e1bb4122173f474cd"
4
5DEPENDS = "virtual/gettext libtool"
6
7SRC_URI = "http://archive.ubuntu.com/ubuntu/pool/universe/libe/${BPN}/${BPN}_${PV}.orig.tar.gz;name=orig \
8 file://gcc5_fix.patch \
9 "
10SRC_URI[orig.md5sum] = "fdf615f23937fad8e02b60b9e3e5fb35"
11SRC_URI[orig.sha256sum] = "d14030ce6122727935fbd676d0876808da1e112721f3cb108564a4d9bf73da71"
12
13inherit autotools-brokensep pkgconfig gettext
14
15PACKAGECONFIG ??= "zlib ssl bz2"
16PACKAGECONFIG[zlib] = "--with-zlib, --without-zlib, zlib, zlib"
17PACKAGECONFIG[bz2] = "--with-bzip2, --without-bzip2, bzip2, bzip2"
18PACKAGECONFIG[ssl] = "--with-openssl, --without-openssl, openssl, openssl"
19PACKAGECONFIG[fuse] = "--with-libfuse, --without-libfuse, fuse"
20PACKAGECONFIG[python] = "--enable-python, --disable-python, python"
21
22EXTRA_OECONF += "--with-gnu-ld --disable-rpath"
23
24RDEPENDS_${PN} += " util-linux-libuuid"
diff --git a/recipes-forensic/sleuth/files/fix_host_poison.patch b/recipes-forensic/sleuth/files/fix_host_poison.patch
deleted file mode 100644
index 03b1fb9..0000000
--- a/recipes-forensic/sleuth/files/fix_host_poison.patch
+++ /dev/null
@@ -1,23 +0,0 @@
1Upstream-Status: Inappropriate [configuration]
2
3Don't use host include or lib paths in *FLAGS
4
5Signed-off-by: Armin Kuster <akuster808@gmail.com>
6
7Index: configure.ac
8===================================================================
9--- a/configure.ac
10+++ b/configure.ac
11@@ -84,12 +84,6 @@ AX_PTHREAD([
12 LDFLAGS="$LDFLAGS $PTHREAD_CFLAGS"
13 CC="$PTHREAD_CC"],[])
14
15-dnl Not all compilers include /usr/local in the include and link path
16-if test -d /usr/local/include; then
17- CPPFLAGS="$CPPFLAGS -I/usr/local/include"
18- LDFLAGS="$LDFLAGS -L/usr/local/lib"
19-fi
20-
21 dnl Add enable/disable option
22 AC_ARG_ENABLE([java],
23 [AS_HELP_STRING([--disable-java], [Do not build the java bindings or jar file])])
diff --git a/recipes-forensic/sleuth/sleuthkit_4.1.3.bb b/recipes-forensic/sleuth/sleuthkit_4.1.3.bb
deleted file mode 100644
index ba335f3..0000000
--- a/recipes-forensic/sleuth/sleuthkit_4.1.3.bb
+++ /dev/null
@@ -1,31 +0,0 @@
1SUMMARY = "The Sleuth Kit (TSK) is a library and collection of command line tools that allow you to investigate disk images."
2HOMEPAGE = "http://www.sleuthkit.org/sleuthkit/"
3LICENSE = "IPL-1.0 & GPLv2 & CPL-1.0"
4LIC_FILES_CHKSUM = "file://licenses/GNU-COPYING;startline=4;endline=5;md5=475b4784903850b579dc6e6310bd5f08\
5 file://licenses/IBM-LICENSE;startline=1;endline=2;md5=1fc3300388b0d6e6216825dd89c2e3a2\
6 file://licenses/cpl1.0.txt;startline=1;endline=2;md5=9e58c878202c73a4e3ed4be72598fb92"
7
8DEPENDS = "libtool"
9
10SRC_URI = "http://archive.ubuntu.com/ubuntu/pool/universe/s/${BPN}/${BPN}_${PV}.orig.tar.gz;name=orig \
11 file://fix_host_poison.patch \
12 "
13SRC_URI[orig.md5sum] = "139a12f06952d8a40bbe07884994cf5d"
14SRC_URI[orig.sha256sum] = "67f9d2a31a8884d58698d6122fc1a1bfa9bf238582bde2b49228ec9b899f0327"
15
16inherit autotools-brokensep pkgconfig gettext
17
18PACKAGECONFIG ??= "aff zlib ewf"
19PACKAGECONFIG[aff] = "--with-afflib=${STAGING_DIR_HOST}/usr, --without-afflib, afflib"
20PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_DIR_HOST}/usr, --without-zlib, zlib"
21PACKAGECONFIG[ewf] = "--with-libewf=${STAGING_DIR_HOST}/usr, --without-libewf, libewf"
22
23#--with-gnu-ld
24EXTRA_OECONF += "--enable-static=no --disable-java LIBS='-L${STAGING_LIBDIR}' LDFLAGS='-L${STAGING_LIBDIR}' CPPFLAGS='-I${STAGING_INCDIR}'"
25
26# Avoid QA Issue: No GNU_HASH in the elf binary
27INSANE_SKIP_${PN} = "ldflags"
28
29FILES_${PN} += " ${datadir}/tsk"
30
31RDEPENDS_${PN} += " perl"