forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/iulib: Fix wrong declaration of default arguments
Gentoo-Bug: 570102 * EAPI=6 * Make patch -p1 compatible Package-Manager: portage-2.2.27
- Loading branch information
1 parent
fe716cd
commit d401688
Showing
3 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
media-libs/iulib/files/iulib-0.4-default-arguments-declaration.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Default arguments need to be specified in the class declaration and cannot be redeclared. | ||
https://bugs.gentoo.org/show_bug.cgi?id=570102 | ||
|
||
--- iulib-0.4/imglib/imgops.cc | ||
+++ iulib-0.4/imglib/imgops.cc | ||
@@ -133,7 +133,7 @@ | ||
|
||
template<class T,class V> | ||
void addscaled(narray<T> &dest,narray<T> &src, | ||
- V scale=1,int dx=0,int dy=0) { | ||
+ V scale,int dx,int dy) { | ||
for (int i=0; i<dest.dim(0); i++) | ||
for (int j=0; j<dest.dim(1); j++) | ||
dest.unsafe_at(i,j) += (T)(scale*xref(src,i+dx,j+dy)); | ||
--- iulib-0.4/imglib/imgops.h | ||
+++ iulib-0.4/imglib/imgops.h | ||
@@ -67,7 +67,7 @@ | ||
} | ||
|
||
template<class T, class V> | ||
- void addscaled(colib::narray<T> &, colib::narray<T> &, V, int, int); | ||
+ void addscaled(colib::narray<T> &dest, colib::narray<T> &src, V scale=1, int dx=0, int dy=0); | ||
template<class T> | ||
void tighten(colib::narray<T> &image); | ||
template<class T> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit scons-utils toolchain-funcs | ||
|
||
DESCRIPTION="easy-to-use image and video I/O functions" | ||
HOMEPAGE="https://github.com/tmbdev/iulib" | ||
SRC_URI="https://iulib.googlecode.com/files/${P}.tgz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="sdl" | ||
|
||
RDEPEND="sys-libs/zlib | ||
media-libs/libpng:0= | ||
virtual/jpeg:0 | ||
media-libs/tiff:0 | ||
sdl? ( | ||
media-libs/libsdl | ||
media-libs/sdl-gfx | ||
)" | ||
DEPEND="${RDEPEND} | ||
dev-util/scons" | ||
|
||
PATCHES=( | ||
"${FILESDIR}/${P}-scons-build-env.patch" | ||
"${FILESDIR}/${P}-default-arguments-declaration.patch" | ||
) | ||
|
||
src_prepare() { | ||
default | ||
sed -i \ | ||
-e "/^have_sdl = 1/s:1:$(usex sdl 1 0):" \ | ||
-e '/tiff/s:inflate:TIFFOpen:' \ | ||
-e '/progs.Append(LIBS=libiulib)/s:Append:Prepend:' \ | ||
-e "/^libdir/s:/lib:/$(get_libdir):" \ | ||
SConstruct || die #297326 #308955 #310439 | ||
sed -i '/SDL.SDL_image.h/d' utils/dgraphics.cc || die #310443 | ||
tc-export AR CC CXX RANLIB | ||
} | ||
|
||
src_configure() { | ||
# Avoid configure as we build/install with scons | ||
: | ||
} | ||
|
||
src_compile() { | ||
escons prefix=/usr | ||
} | ||
|
||
src_install() { | ||
escons prefix="${D}"/usr install | ||
dodoc CHANGES README TODO | ||
} |