hasufell    14/04/18 21:11:48

  Modified:             ChangeLog
  Added:                sdl2-image-2.0.0-r1.ebuild
  Log:
  add multilib support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  Changes    Path
1.2                  media-libs/sdl2-image/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-image/ChangeLog?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-image/ChangeLog?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-image/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl2-image/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   28 Aug 2013 21:48:06 -0000      1.1
+++ ChangeLog   18 Apr 2014 21:11:48 -0000      1.2
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/sdl2-image
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl2-image/ChangeLog,v 1.1 
2013/08/28 21:48:06 hasufell Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl2-image/ChangeLog,v 1.2 
2014/04/18 21:11:48 hasufell Exp $
+
+*sdl2-image-2.0.0-r1 (18 Apr 2014)
+
+  18 Apr 2014; Julian Ospald <[email protected]> +sdl2-image-2.0.0-r1.ebuild:
+  add multilib support
 
 *sdl2-image-2.0.0 (28 Aug 2013)
 



1.1                  media-libs/sdl2-image/sdl2-image-2.0.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-image/sdl2-image-2.0.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-image/sdl2-image-2.0.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: sdl2-image-2.0.0-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/sdl2-image/sdl2-image-2.0.0-r1.ebuild,v 1.1 
2014/04/18 21:11:48 hasufell Exp $

EAPI=5
inherit eutils multilib-minimal

MY_P=SDL2_image-${PV}
DESCRIPTION="Image file loading library"
HOMEPAGE="http://www.libsdl.org/projects/SDL_image/";
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz";

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gif jpeg png static-libs tiff webp"

RDEPEND="
        media-libs/libsdl2[${MULTILIB_USEDEP}]
        sys-libs/zlib[${MULTILIB_USEDEP}]
        png? ( media-libs/libpng:0[${MULTILIB_USEDEP}] )
        jpeg? ( virtual/jpeg[${MULTILIB_USEDEP}] )
        tiff? ( media-libs/tiff[${MULTILIB_USEDEP}] )
        webp? ( media-libs/libwebp[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}"

S=${WORKDIR}/${MY_P}

multilib_src_configure() {
        ECONF_SOURCE="${S}" econf \
                $(use_enable static-libs static) \
                --disable-sdltest \
                --enable-bmp \
                $(use_enable gif) \
                $(use_enable jpeg jpg) \
                --disable-jpg-shared \
                --enable-lbm \
                --enable-pcx \
                $(use_enable png) \
                --disable-png-shared \
                --enable-pnm \
                --enable-tga \
                $(use_enable tiff tif) \
                --disable-tif-shared \
                --enable-xcf \
                --enable-xpm \
                --enable-xv \
                $(use_enable webp) \
                --disable-webp-shared
}

multilib_src_install() {
        emake DESTDIR="${D}" install
        multilib_is_native_abi && newbin .libs/showimage showimage2
}

multilib_src_install_all() {
        dodoc {CHANGES,README}.txt
        use static-libs || prune_libtool_files
}




Reply via email to