mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-06 15:34:44 +01:00
59 lines
1.4 KiB
Bash
59 lines
1.4 KiB
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
inherit multilib webapp eutils
|
|
|
|
WEBAPP_MANUAL_SLOT="yes"
|
|
|
|
DESCRIPTION="Extract data from TCP/IP traffic"
|
|
HOMEPAGE="http://www.xplico.org"
|
|
SRC_URI="mirror://sourceforge/$PN/$P.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="+geoip mysql"
|
|
SLOT="0"
|
|
|
|
DEPEND="net-libs/libpcap
|
|
>=net-libs/nDPI-1.5.0"
|
|
RDEPEND="mysql? ( dev-db/mysql )
|
|
media-sound/sox
|
|
media-sound/lame
|
|
dev-lang/php
|
|
virtual/httpd-cgi
|
|
dev-db/sqlite:3
|
|
geoip? ( dev-libs/geoip ) "
|
|
# cups? ( app-text/ghostscript-gpl ) "
|
|
#videosnarf
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/"${P}"-dont-strip.patch
|
|
#unbundle libndpi
|
|
epatch "${FILESDIR}"/"${P}"-libndpi15.patch
|
|
|
|
# TODO:
|
|
# unbundle json-c and geoip
|
|
|
|
# fix CFLAGS
|
|
sed -i "s|CFLAGS = -rdynamic|CFLAGS += -rdynamic|g" Makefile
|
|
# sed -i "s|CFLAGS = -rdynamic|CFLAGS += -rdynamic|g" system/dema/Makefile
|
|
if use geoip; then
|
|
sed -i -e "s|GEOIP_LIB =.*|GEOIP_LIB = /usr/$(get_libdir)/libGeoIP.a|g" Makefile
|
|
sed -i "s|GeoLiteCity.dat|/usr/share/GeoIP/GeoIP.dat|" common/geoiploc.c
|
|
sed -i "s|-lpthread|-lpthread -lGeoIP|g" manipulators/www/Makefile\
|
|
manipulators/mfbc/Makefile manipulators/mwmail/Makefile\
|
|
manipulators/mfile/Makefile
|
|
fi
|
|
}
|
|
|
|
src_compile() {
|
|
emake -j1
|
|
}
|
|
|
|
src_install() {
|
|
webapp_src_preinst
|
|
# mv xi "${D}"/${MY_HTDOCSDIR}/xplico
|
|
DESTDIR="${D}" emake -j1 install
|
|
webapp_src_install
|
|
}
|