radhermit    14/03/15 11:42:56

  Modified:             ChangeLog
  Added:                pngquant-2.1.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  Changes    Path
1.6                  media-gfx/pngquant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/pngquant/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   19 Jan 2014 07:33:29 -0000      1.5
+++ ChangeLog   15 Mar 2014 11:42:55 -0000      1.6
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/pngquant
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/ChangeLog,v 1.5 
2014/01/19 07:33:29 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/ChangeLog,v 1.6 
2014/03/15 11:42:55 radhermit Exp $
+
+*pngquant-2.1.0 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder <[email protected]> +pngquant-2.1.0.ebuild:
+  Version bump.
 
 *pngquant-2.0.2 (19 Jan 2014)
 



1.1                  media-gfx/pngquant/pngquant-2.1.0.ebuild

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

Index: pngquant-2.1.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/pngquant-2.1.0.ebuild,v 
1.1 2014/03/15 11:42:55 radhermit Exp $

EAPI=5
inherit flag-o-matic toolchain-funcs

DESCRIPTION="a command-line utility for converting 24/32-bit PNG images to 
paletted (8-bit) PNGs"
HOMEPAGE="http://pngquant.org/";
SRC_URI="http://pngquant.org/${P}-src.tar.bz2";

LICENSE="HPND rwpng"
SLOT=0
KEYWORDS="~amd64 ~x86"
IUSE="debug openmp sse2"

RDEPEND="media-libs/libpng:0=
        sys-libs/zlib:="
DEPEND=${RDEPEND}

src_prepare() {
        # Failure in upstream logic. Otherwise we lose the -I and -L flags
        # from Makefile.
        sed -i \
                -e 's:CFLAGS ?=:CFLAGS +=:' \
                -e 's:LDFLAGS ?=:LDFLAGS +=:' \
                Makefile || die
}

src_compile() {
        use debug || append-cflags -DNDEBUG
        use sse2 && append-cflags -DUSE_SSE=1

        local openmp
        if use openmp && tc-has-openmp; then
                append-cflags -fopenmp
                openmp="-lgomp"
        fi

        tc-export CC
        emake CFLAGSOPT="" OPENMPFLAGS="${openmp}"
}

src_install() {
        dobin ${PN}
        doman ${PN}.1
        dodoc CHANGELOG README.md
}




Reply via email to