radhermit    14/12/03 08:04:56

  Modified:             ChangeLog
  Added:                gmic-1.6.0.2.ebuild
  Log:
  Version bump (bug #516012). Add openmp flag and drop to ffmpeg only since the 
external binary is called instead of linking against the library.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  Changes    Path
1.54                 media-gfx/gmic/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gmic/ChangeLog?rev=1.54&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gmic/ChangeLog?rev=1.54&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gmic/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gmic/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog   16 Jun 2014 07:51:42 -0000      1.53
+++ ChangeLog   3 Dec 2014 08:04:56 -0000       1.54
@@ -1,6 +1,13 @@
 # ChangeLog for media-gfx/gmic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/ChangeLog,v 1.53 2014/06/16 
07:51:42 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/ChangeLog,v 1.54 2014/12/03 
08:04:56 radhermit Exp $
+
+*gmic-1.6.0.2 (03 Dec 2014)
+
+  03 Dec 2014; Tim Harder <radher...@gentoo.org> +gmic-1.6.0.2.ebuild,
+  +files/gmic-1.6.0.2-makefile.patch:
+  Version bump (bug #516012). Add openmp flag and drop to ffmpeg only since the
+  external binary is called instead of linking against the library.
 
   16 Jun 2014; Tim Harder <radher...@gentoo.org> -gmic-1.5.8.0.ebuild,
   -gmic-1.5.8.1.ebuild, -gmic-1.5.8.2.ebuild, -gmic-1.5.8.3.ebuild,



1.1                  media-gfx/gmic/gmic-1.6.0.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gmic/gmic-1.6.0.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gmic/gmic-1.6.0.2.ebuild?rev=1.1&content-type=text/plain

Index: gmic-1.6.0.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gmic/gmic-1.6.0.2.ebuild,v 1.1 
2014/12/03 08:04:56 radhermit Exp $

EAPI=5

inherit eutils toolchain-funcs bash-completion-r1 flag-o-matic

DESCRIPTION="GREYC's Magic Image Converter"
HOMEPAGE="http://gmic.sourceforge.net/";
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz"

LICENSE="CeCILL-2 FDL-1.3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ffmpeg fftw graphicsmagick jpeg opencv openexr openmp png tiff X zlib"

DEPEND="
        fftw? ( sci-libs/fftw:3.0[threads] )
        graphicsmagick? ( media-gfx/graphicsmagick )
        jpeg? ( virtual/jpeg )
        opencv? ( >=media-libs/opencv-2.3.1a-r1 )
        openexr? (
                media-libs/ilmbase
                media-libs/openexr
        )
        png? ( media-libs/libpng )
        tiff? ( media-libs/tiff )
        X? (
                x11-libs/libX11
                x11-libs/libXext
        )
        zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}
        ffmpeg? ( media-video/ffmpeg:0 )
"

S=${WORKDIR}/${P}/src

pkg_pretend() {
        if use openmp ; then
                tc-has-openmp || die "Please switch to an openmp compatible 
compiler"
        fi

        if ! test-flag-CXX -std=c++11 ; then
                die "You need at least GCC 4.7.x or Clang >= 3.3 for 
C++11-specific compiler flags"
        fi
}

src_prepare() {
        epatch "${FILESDIR}"/${P}-makefile.patch

        for i in fftw jpeg opencv openmp png tiff zlib ; do
                use $i || { sed -i -r "s/^(${i}_(CFLAGS|LIBS) =).*/\1/I" 
Makefile || die ; }
        done

        use graphicsmagick || { sed -i -r "s/^(MAGICK_(CFLAGS|LIBS) =).*/\1/" 
Makefile || die ; }
        use openexr || { sed -i -r "s/^(EXR_(CFLAGS|LIBS) =).*/\1/" Makefile || 
die ; }

        if ! use X ; then
                sed -i -r "s/^((X11|XSHM)_(CFLAGS|LIBS) =).*/\1/" Makefile || 
die

                # disable display capabilities when X support is disabled
                append-cppflags -Dcimg_display=0
        fi
}

src_compile() {
        emake AR="$(tc-getAR)" CC="$(tc-getCXX)" CFLAGS="${CXXFLAGS}" \
                LIB="$(get_libdir)" OPT_CFLAGS= DEBUG_CFLAGS= linux lib
        emake man bashcompletion
}

src_install() {
        emake DESTDIR="${D}" LIB="$(get_libdir)" install-bin install-lib 
install-man install-bash
        dodoc ../README
}




Reply via email to