Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/texmaker: ChangeLog texmaker-3.5.ebuild
Date: Sun, 26 Aug 2012 09:48:34
Message-Id: 20120826094824.53013207B5@flycatcher.gentoo.org
1 jlec 12/08/26 09:48:24
2
3 Modified: ChangeLog
4 Added: texmaker-3.5.ebuild
5 Log:
6 app-office/texmaker: Version BUmp; #432476
7
8 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.107 app-office/texmaker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?rev=1.107&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?rev=1.107&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?r1=1.106&r2=1.107
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v
20 retrieving revision 1.106
21 retrieving revision 1.107
22 diff -u -r1.106 -r1.107
23 --- ChangeLog 8 Aug 2012 20:20:22 -0000 1.106
24 +++ ChangeLog 26 Aug 2012 09:48:24 -0000 1.107
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/texmaker
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.106 2012/08/08 20:20:22 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.107 2012/08/26 09:48:24 jlec Exp $
30 +
31 +*texmaker-3.5 (26 Aug 2012)
32 +
33 + 26 Aug 2012; Justin Lecher <jlec@g.o> +texmaker-3.5.ebuild,
34 + +files/texmaker-3.5-hunspell.patch:
35 + Version BUmp; #432476
36
37 08 Aug 2012; Brent Baude <ranger@g.o> texmaker-3.3.4.ebuild:
38 Marking texmaker-3.3.4 ppc for bug 427198
39
40
41
42 1.1 app-office/texmaker/texmaker-3.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/texmaker-3.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/texmaker-3.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: texmaker-3.5.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/texmaker-3.5.ebuild,v 1.1 2012/08/26 09:48:24 jlec Exp $
52
53 EAPI=4
54
55 inherit base qt4-r2 versionator
56
57 # The upstream version numbering is bad, so we have to remove a dot in the
58 # minor version number
59 MAJOR="$(get_major_version)"
60 MINOR_1="$(($(get_version_component_range 2)/10))"
61 MINOR_2="$(($(get_version_component_range 2)%10))"
62 if [ ${MINOR_2} -eq "0" ] ; then
63 MY_P="${PN}-${MAJOR}.${MINOR_1}"
64 else
65 MY_P="${PN}-${MAJOR}.${MINOR_1}.${MINOR_2}"
66 fi
67
68 MY_P="${P}"
69
70 DESCRIPTION="A nice LaTeX-IDE"
71 HOMEPAGE="http://www.xm1math.net/texmaker/"
72 SRC_URI="http://www.xm1math.net/texmaker/${MY_P}.tar.bz2"
73
74 LICENSE="GPL-2"
75 SLOT="0"
76 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
77 IUSE=""
78
79 S="${WORKDIR}/${MY_P}"
80
81 COMMON_DEPEND="
82 app-text/poppler[qt4]
83 sys-libs/zlib
84 x11-libs/libX11
85 x11-libs/libXext
86 x11-libs/qt-gui:4
87 x11-libs/qt-core:4
88 x11-libs/qt-webkit:4
89 app-text/hunspell"
90 RDEPEND="${COMMON_DEPEND}
91 virtual/latex-base
92 app-text/psutils
93 app-text/ghostscript-gpl
94 media-libs/netpbm"
95 DEPEND="${COMMON_DEPEND}
96 virtual/pkgconfig"
97
98 PATCHES=(
99 "${FILESDIR}"/${P}-hunspell.patch
100 "${FILESDIR}"/${PN}-3.3.3-qt48.patch
101 )
102 src_configure() {
103 eqmake4 \
104 ${PN}.pro \
105 PREFIX="${EPREFIX}/usr" \
106 DESKTOPDIR="${EPREFIX}/usr/share/applications" \
107 ICONDIR="${EPREFIX}/usr/share/pixmaps"
108 }
109
110 src_install() {
111 emake INSTALL_ROOT="${ED}" install
112
113 insinto /usr/share/pixmaps/texmaker
114 doins utilities/texmaker*.png
115 doins utilities/texmaker.svg
116
117 dodoc utilities/AUTHORS utilities/CHANGELOG.txt
118 }
119
120 pkg_postinst() {
121 elog "A user manual with many screenshots is available at:"
122 elog "${EPREFIX}/usr/share/${PN}/usermanual_en.html"
123 }