Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/texmaker: texmaker-2.10.ebuild ChangeLog
Date: Sat, 30 Oct 2010 21:36:29
Message-Id: 20101030213624.4293B20051@flycatcher.gentoo.org
1 aballier 10/10/30 21:36:24
2
3 Modified: ChangeLog
4 Added: texmaker-2.10.ebuild
5 Log:
6 Version bump, readd wrongly dropped ppc* keywords, readd wrongly removed minimal qt versions
7
8 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.72 app-office/texmaker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?rev=1.72&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?rev=1.72&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?r1=1.71&r2=1.72
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v
20 retrieving revision 1.71
21 retrieving revision 1.72
22 diff -u -r1.71 -r1.72
23 --- ChangeLog 23 Oct 2010 14:48:48 -0000 1.71
24 +++ ChangeLog 30 Oct 2010 21:36:24 -0000 1.72
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-office/texmaker
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.71 2010/10/23 14:48:48 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.72 2010/10/30 21:36:24 aballier Exp $
30 +
31 +*texmaker-2.10 (30 Oct 2010)
32 +
33 + 30 Oct 2010; Alexis Ballier <aballier@g.o> +texmaker-2.10.ebuild,
34 + +files/texmaker-2.10-hunspell.patch:
35 + Version bump, readd wrongly dropped ppc* keywords, readd wrongly removed
36 + minimal qt versions
37
38 23 Oct 2010; Raúl Porcel <armin76@g.o> texmaker-1.80.ebuild,
39 texmaker-1.91.ebuild, texmaker-1.92.ebuild, texmaker-1.99.ebuild,
40
41
42
43 1.1 app-office/texmaker/texmaker-2.10.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/texmaker-2.10.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/texmaker-2.10.ebuild?rev=1.1&content-type=text/plain
47
48 Index: texmaker-2.10.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/texmaker-2.10.ebuild,v 1.1 2010/10/30 21:36:24 aballier Exp $
53
54 EAPI="3"
55
56 inherit base qt4-r2 versionator
57
58 # The upstream version numbering is bad, so we have to remove a dot in the
59 # minor version number
60 MAJOR="$(get_major_version)"
61 MINOR_1="$(($(get_version_component_range 2)/10))"
62 MINOR_2="$(($(get_version_component_range 2)%10))"
63 if [ ${MINOR_2} -eq "0" ] ; then
64 MY_P="${PN}-${MAJOR}.${MINOR_1}"
65 else
66 MY_P="${PN}-${MAJOR}.${MINOR_1}.${MINOR_2}"
67 fi
68
69 DESCRIPTION="A nice LaTeX-IDE"
70 HOMEPAGE="http://www.xm1math.net/texmaker/"
71 SRC_URI="http://www.xm1math.net/texmaker/${MY_P}.tar.bz2"
72
73 LICENSE="GPL-2"
74 SLOT="0"
75 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
76 IUSE=""
77
78 S="${WORKDIR}/${MY_P}"
79
80 COMMON_DEPEND="
81 app-text/poppler[qt4]
82 x11-libs/libX11
83 x11-libs/libXext
84 >=x11-libs/qt-gui-4.6.1:4
85 >=x11-libs/qt-core-4.6.1:4
86 >=x11-libs/qt-webkit-4.6.1:4
87 >=app-text/hunspell-1.2.4"
88 RDEPEND="${COMMON_DEPEND}
89 virtual/latex-base
90 app-text/psutils
91 app-text/ghostscript-gpl
92 media-libs/netpbm"
93 DEPEND="${COMMON_DEPEND}
94 dev-util/pkgconfig"
95
96 PATCHES=( "${FILESDIR}/${P}-hunspell.patch" )
97
98 src_install() {
99 emake INSTALL_ROOT="${D}" install || die "make install failed"
100
101 insinto /usr/share/pixmaps/texmaker
102 doins utilities/texmaker*.png || die "doins failed."
103 doins utilities/texmaker.svg || die "doins failed."
104
105 dodoc utilities/AUTHORS utilities/CHANGELOG.txt || die "dodoc failed"
106 }
107
108 pkg_postinst() {
109 elog "A user manual with many screenshots is available at:"
110 elog "/usr/share/${PN}/usermanual_en.html"
111 }