mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-17 14:49:30 -07:00
mail-filter/spamprobe: Fix building with giflib-5 (#574218 by André Malo)
Package-Manager: portage-2.3.2 RepoMan-Options: --force
This commit is contained in:
27
mail-filter/spamprobe/files/spamprobe-1.4d-giflib5.patch
Normal file
27
mail-filter/spamprobe/files/spamprobe-1.4d-giflib5.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
diff -Nur spamprobe~/src/parser/GifParser.cc spamprobe/src/parser/GifParser.cc
|
||||
--- spamprobe~/src/parser/GifParser.cc
|
||||
+++ spamprobe/src/parser/GifParser.cc
|
||||
@@ -81,7 +81,11 @@
|
||||
GifParser::~GifParser()
|
||||
{
|
||||
if (m_gif) {
|
||||
+#if defined(GIFLIB_MAJOR) && GIFLIB_MAJOR >= 5
|
||||
+ DGifCloseFile(m_gif, NULL);
|
||||
+#else
|
||||
DGifCloseFile(m_gif);
|
||||
+#endif
|
||||
}
|
||||
}
|
||||
|
||||
@@ -99,7 +103,11 @@
|
||||
void GifParser::openImage()
|
||||
{
|
||||
m_nextByteIndex = 0;
|
||||
+#if defined(GIFLIB_MAJOR) && GIFLIB_MAJOR >= 5
|
||||
+ m_gif = DGifOpen(this, readFromBuffer, NULL);
|
||||
+#else
|
||||
m_gif = DGifOpen(this, readFromBuffer);
|
||||
+#endif
|
||||
if (!m_gif) {
|
||||
throw runtime_error("open gif failed");
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
--- src/parser/PngParser.cc
|
||||
+++ src/parser/PngParser.cc
|
||||
--- a/src/parser/PngParser.cc
|
||||
+++ b/src/parser/PngParser.cc
|
||||
@@ -53,9 +53,9 @@
|
||||
{
|
||||
if (m_initialized) {
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=2
|
||||
inherit eutils
|
||||
EAPI=6
|
||||
|
||||
DESCRIPTION="Fast, intelligent, automatic spam detector using Bayesian analysis"
|
||||
HOMEPAGE="http://spamprobe.sourceforge.net/"
|
||||
@@ -14,17 +13,21 @@ SLOT="0"
|
||||
KEYWORDS="amd64 ~ppc x86"
|
||||
IUSE="berkdb gif jpeg png"
|
||||
|
||||
DEPEND="berkdb? ( >=sys-libs/db-3.2 )
|
||||
gif? ( media-libs/giflib )
|
||||
RDEPEND="
|
||||
berkdb? ( >=sys-libs/db-3.2:* )
|
||||
gif? ( media-libs/giflib:= )
|
||||
jpeg? ( virtual/jpeg )
|
||||
png? ( media-libs/libpng )"
|
||||
png? ( media-libs/libpng:0= )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${PN}-1.4b-gcc43.patch \
|
||||
"${FILESDIR}"/${P}-libpng14.patch \
|
||||
"${FILESDIR}"/${P}+db-5.0.patch \
|
||||
"${FILESDIR}"/${P}-gcc47.patch
|
||||
}
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-1.4b-gcc43.patch
|
||||
"${FILESDIR}"/${P}-libpng14.patch
|
||||
"${FILESDIR}"/${P}+db-5.0.patch
|
||||
"${FILESDIR}"/${P}-gcc47.patch
|
||||
"${FILESDIR}"/${P}-giflib5.patch
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
@@ -34,9 +37,7 @@ src_configure() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die
|
||||
dodoc ChangeLog README.txt
|
||||
|
||||
default
|
||||
insinto /usr/share/${PN}/contrib
|
||||
doins contrib/* || die
|
||||
doins contrib/*
|
||||
}
|
||||
Reference in New Issue
Block a user