Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/mupdf: mupdf-1.7a.ebuild ChangeLog
Date: Mon, 01 Jun 2015 12:31:46
Message-Id: 20150601123141.A8BE9A13@oystercatcher.gentoo.org
1 xmw 15/06/01 12:31:41
2
3 Modified: mupdf-1.7a.ebuild ChangeLog
4 Log:
5 Enable javascript support (bug 550286, Cedric Sodhi).
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
8
9 Revision Changes Path
10 1.2 app-text/mupdf/mupdf-1.7a.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mupdf/mupdf-1.7a.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mupdf/mupdf-1.7a.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mupdf/mupdf-1.7a.ebuild?r1=1.1&r2=1.2
15
16 Index: mupdf-1.7a.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.7a.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- mupdf-1.7a.ebuild 20 May 2015 15:08:10 -0000 1.1
23 +++ mupdf-1.7a.ebuild 1 Jun 2015 12:31:41 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.7a.ebuild,v 1.1 2015/05/20 15:08:10 xmw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.7a.ebuild,v 1.2 2015/06/01 12:31:41 xmw Exp $
29
30 EAPI=5
31
32 @@ -14,7 +14,7 @@
33 MY_SOVER=1.7
34 SLOT="0/${MY_SOVER}"
35 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
36 -IUSE="X vanilla +curl +openssl static static-libs"
37 +IUSE="X vanilla +curl javascript +openssl static static-libs"
38
39 LIB_DEPEND="dev-libs/openssl[static-libs?]
40 media-libs/freetype:2[static-libs?]
41 @@ -23,7 +23,8 @@
42 net-misc/curl[static-libs?]
43 virtual/jpeg[static-libs?]
44 X? ( x11-libs/libX11[static-libs?]
45 - x11-libs/libXext[static-libs?] )"
46 + x11-libs/libXext[static-libs?] )
47 + javascript? ( dev-lang/mujs )"
48 RDEPEND="${LIB_DEPEND}"
49 DEPEND="${RDEPEND}
50 virtual/pkgconfig
51 @@ -41,7 +42,8 @@
52 "${FILESDIR}"/${PN}-1.3-CFLAGS.patch \
53 "${FILESDIR}"/${PN}-1.5-old-debian-files.patch \
54 "${FILESDIR}"/${PN}-1.3-pkg-config.patch \
55 - "${FILESDIR}"/${PN}-1.5-Makerules-openssl-curl.patch
56 + "${FILESDIR}"/${PN}-1.5-Makerules-openssl-curl.patch \
57 + "${FILESDIR}"/${PN}-1.7a-system-mujs.patch
58
59 if has_version ">=media-libs/openjpeg-2.1:2" ; then
60 epatch \
61 @@ -71,6 +73,9 @@
62 -e "1iHAVE_X11 = $(usex X)" \
63 -e "1iWANT_OPENSSL = $(usex openssl)" \
64 -e "1iWANT_CURL = $(usex curl)" \
65 + -e "1iHAVE_MUJS = $(usex javascript)" \
66 + -e "1iMUJS_LIBS = -lmujs" \
67 + -e "1iMUJS_CFLAGS =" \
68 -i Makerules || die
69
70 if use static-libs || use static ; then
71
72
73
74 1.118 app-text/mupdf/ChangeLog
75
76 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mupdf/ChangeLog?rev=1.118&view=markup
77 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mupdf/ChangeLog?rev=1.118&content-type=text/plain
78 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mupdf/ChangeLog?r1=1.117&r2=1.118
79
80 Index: ChangeLog
81 ===================================================================
82 RCS file: /var/cvsroot/gentoo-x86/app-text/mupdf/ChangeLog,v
83 retrieving revision 1.117
84 retrieving revision 1.118
85 diff -u -r1.117 -r1.118
86 --- ChangeLog 20 May 2015 15:08:10 -0000 1.117
87 +++ ChangeLog 1 Jun 2015 12:31:41 -0000 1.118
88 @@ -1,6 +1,10 @@
89 # ChangeLog for app-text/mupdf
90 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
91 -# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/ChangeLog,v 1.117 2015/05/20 15:08:10 xmw Exp $
92 +# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/ChangeLog,v 1.118 2015/06/01 12:31:41 xmw Exp $
93 +
94 + 01 Jun 2015; Michael Weber <xmw@g.o>
95 + +files/mupdf-1.7a-system-mujs.patch, mupdf-1.7a.ebuild:
96 + Enable javascript support (bug 550286, Cedric Sodhi).
97
98 *mupdf-1.7a (20 May 2015)