Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfpx/
Date: Sat, 20 Feb 2016 11:24:13
Message-Id: 1455967445.b8e66d798f0705146b1e1602a1adf2f4c2a7247d.jer@gentoo
1 commit: b8e66d798f0705146b1e1602a1adf2f4c2a7247d
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 20 11:23:50 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 20 11:24:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e66d79
7
8 media-libs/libfpx: Version bump (bug #395367)
9
10 Also, store the upstream revision in PV
11
12 Package-Manager: portage-2.2.27
13
14 media-libs/libfpx/Manifest | 1 +
15 media-libs/libfpx/libfpx-1.3.1_p6.ebuild | 44 ++++++++++++++++++++++++++++++++
16 2 files changed, 45 insertions(+)
17
18 diff --git a/media-libs/libfpx/Manifest b/media-libs/libfpx/Manifest
19 index 2ea3eee..2d22911 100644
20 --- a/media-libs/libfpx/Manifest
21 +++ b/media-libs/libfpx/Manifest
22 @@ -1 +1,2 @@
23 DIST libfpx-1.3.0-1.tar.bz2 2285921 SHA256 0cc240e9458d099c0a50db9c771b3e5b109164472c08f40f31e1190716af48b6 SHA512 f045edb01046ec3d2fee8eeee8a861ebcb63b3b9094a93d4bda28e8009117bdbb7e843bdf4aa8d0502482acec7c2ea51df53b88ab2bf6a61c37aed8653579e67 WHIRLPOOL 16dc643d2602d44fe626fd2c1d35e743dbcfb825fc53e8a20a95145275d71d770fafd75e59b4b74fa5b42ef52f9339474fe877455c04a8f668c47d700d580fb3
24 +DIST libfpx-1.3.1-6.tar.bz2 2358328 SHA256 84e663bb23619e19195777a7c5d348046756f28cffda3d0ea2160ed0b55a698a SHA512 d33bc59f091100f4e0f7db396ba2f3a93951b348f8b175070fa23186f7ce488e71b7be43a45ebd9a3af21affe5342f63955df8549ff15582f8b29e67601531fb WHIRLPOOL d107a1ee69d018699567761603ce21ba6f6b80e25d5e3e53f6a76ef262602d0d344127c6a0c7f372c2da60a3b293882184513d4a77e674c32b384d5c8798a4bf
25
26 diff --git a/media-libs/libfpx/libfpx-1.3.1_p6.ebuild b/media-libs/libfpx/libfpx-1.3.1_p6.ebuild
27 new file mode 100644
28 index 0000000..ef50b4e
29 --- /dev/null
30 +++ b/media-libs/libfpx/libfpx-1.3.1_p6.ebuild
31 @@ -0,0 +1,44 @@
32 +# Copyright 1999-2013 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +inherit eutils flag-o-matic libtool
38 +
39 +DESCRIPTION="A library for manipulating FlashPIX images"
40 +HOMEPAGE="http://www.i3a.org/"
41 +SRC_URI="mirror://imagemagick/delegates/${P/_p/-}.tar.bz2"
42 +
43 +LICENSE="Flashpix"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
46 +IUSE="static-libs"
47 +
48 +S=${WORKDIR}/${P/_p/-}
49 +
50 +src_prepare() {
51 + epatch "${FILESDIR}"/${PN}-1.2.0.13-export-symbols.patch
52 +
53 + eapply_user
54 +
55 + # we're not windows, even though we don't define __unix by default
56 + [[ ${CHOST} == *-darwin* ]] && append-flags -D__unix
57 +
58 + elibtoolize
59 +}
60 +
61 +src_configure() {
62 + append-ldflags -Wl,--no-undefined
63 + econf \
64 + $(use_enable static-libs static) \
65 + LIBS="-lstdc++ -lm"
66 +}
67 +
68 +src_install() {
69 + default
70 +
71 + dodoc AUTHORS ChangeLog doc/*.txt
72 +
73 + insinto /usr/share/doc/${PF}/pdf
74 + doins doc/*.pdf
75 +}