Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/qupzilla: qupzilla-1.6.1.ebuild ChangeLog
Date: Wed, 29 Jan 2014 20:27:38
Message-Id: 20140129202733.CFCB52004C@flycatcher.gentoo.org
1 pinkbyte 14/01/29 20:27:33
2
3 Modified: ChangeLog
4 Added: qupzilla-1.6.1.ebuild
5 Log:
6 Version bump, wrt bug #499536. Fix version check in some plugins, partially fix locales list, add check for new locales through l10n eclass
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
9
10 Revision Changes Path
11 1.38 www-client/qupzilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-client/qupzilla/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 27 Jan 2014 01:28:28 -0000 1.37
24 +++ ChangeLog 29 Jan 2014 20:27:33 -0000 1.38
25 @@ -1,6 +1,13 @@
26 # ChangeLog for www-client/qupzilla
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/ChangeLog,v 1.37 2014/01/27 01:28:28 pesa Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/ChangeLog,v 1.38 2014/01/29 20:27:33 pinkbyte Exp $
30 +
31 +*qupzilla-1.6.1 (29 Jan 2014)
32 +
33 + 29 Jan 2014; Sergey Popov <pinkbyte@g.o> +qupzilla-1.6.1.ebuild,
34 + +files/qupzilla-1.6.1-plugins-version-check-fix.patch:
35 + Version bump, wrt bug #499536. Fix version check in some plugins, partially
36 + fix locales list, add check for new locales through l10n eclass
37
38 *qupzilla-1.6.0-r1 (27 Jan 2014)
39
40
41
42
43 1.1 www-client/qupzilla/qupzilla-1.6.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/qupzilla-1.6.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/qupzilla-1.6.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qupzilla-1.6.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/qupzilla-1.6.1.ebuild,v 1.1 2014/01/29 20:27:33 pinkbyte Exp $
53
54 EAPI=5
55
56 PLOCALES="ar_SA bg_BG ca_ES cs_CZ de_DE el_GR es_ES es_VE eu_ES fa_IR fr_FR gl_ES he_IL hu_HU id_ID it_IT ja_JP ka_GE lg nl_NL nqo pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sr_BA@latin sr_BA sr_RS@latin sr_RS sv_SE uk_UA zh_CN zh_TW"
57
58 inherit l10n multilib pax-utils qt4-r2 vcs-snapshot
59
60 DESCRIPTION="Qt WebKit web browser"
61 HOMEPAGE="http://www.qupzilla.com/"
62 SRC_URI="https://github.com/QupZilla/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
63 https://github.com/QupZilla/${PN}-plugins/archive/ce262a05e0f5cea171650ed6589a12359358a732.tar.gz -> ${PN}-plugins-${PV}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="dbus debug gnome-keyring kde nonblockdialogs"
69
70 RDEPEND="
71 dev-libs/openssl:0
72 >=dev-qt/qtcore-4.8:4
73 >=dev-qt/qtgui-4.8:4
74 >=dev-qt/qtscript-4.8:4
75 >=dev-qt/qtsql-4.8:4[sqlite]
76 >=dev-qt/qtwebkit-4.8:4
77 dbus? ( >=dev-qt/qtdbus-4.8:4 )
78 gnome-keyring? ( gnome-base/gnome-keyring )
79 kde? ( kde-base/kwalletd:4 )
80 "
81 DEPEND="${RDEPEND}
82 virtual/pkgconfig
83 "
84
85 DOCS=( AUTHORS CHANGELOG FAQ README.md )
86 PATCHES=( "${FILESDIR}/${P}-plugins-version-check-fix.patch" )
87
88 src_prepare() {
89 # remove outdated prebuilt localizations
90 rm -rf bin/locale || die
91
92 # remove empty locale
93 rm translations/empty.ts || die
94
95 mv "${WORKDIR}"/${PN}-plugins-${PV}/plugins/* "${S}"/src/plugins/ || die
96 mv "${WORKDIR}"/${PN}-plugins-${PV}/themes/* "${S}"/bin/themes/ || die
97
98 l10n_find_plocales_changes "translations" "" ".ts"
99 qt4-r2_src_prepare
100 }
101
102 src_configure() {
103 # see BUILDING document for explanation of options
104 export \
105 QUPZILLA_PREFIX="${EPREFIX}/usr/" \
106 USE_LIBPATH="${EPREFIX}/usr/$(get_libdir)" \
107 USE_QTWEBKIT_2_2=true \
108 DISABLE_DBUS=$(usex dbus '' 'true') \
109 KDE_INTEGRATION=$(usex kde 'true' '') \
110 NONBLOCK_JS_DIALOGS=$(usex nonblockdialogs 'true' '')
111
112 eqmake4 $(use gnome-keyring && echo "DEFINES+=GNOME_INTEGRATION")
113 }
114
115 src_install() {
116 qt4-r2_src_install
117 l10n_for_each_disabled_locale_do rm_loc
118 pax-mark m "${ED}"/usr/bin/qupzilla
119 }
120
121 rm_loc() {
122 rm -f "${ED}"/usr/share/${PN}/locale/${1}.qm || die
123 }