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-2.21.ebuild
Date: Mon, 31 Jan 2011 07:44:41
Message-Id: 20110131074430.DF7F320054@flycatcher.gentoo.org
1 jlec 11/01/31 07:44:30
2
3 Modified: ChangeLog
4 Added: texmaker-2.21.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.75 app-office/texmaker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 26 Jan 2011 11:18:28 -0000 1.74
24 +++ ChangeLog 31 Jan 2011 07:44:30 -0000 1.75
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/texmaker
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.74 2011/01/26 11:18:28 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.75 2011/01/31 07:44:30 jlec Exp $
30 +
31 +*texmaker-2.21 (31 Jan 2011)
32 +
33 + 31 Jan 2011; Justin Lecher <jlec@g.o> +texmaker-2.21.ebuild,
34 + +files/texmaker-2.21-hunspell.patch:
35 + Version Bump
36
37 *texmaker-2.20 (26 Jan 2011)
38
39
40
41
42 1.1 app-office/texmaker/texmaker-2.21.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/texmaker-2.21.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmaker/texmaker-2.21.ebuild?rev=1.1&content-type=text/plain
46
47 Index: texmaker-2.21.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/texmaker-2.21.ebuild,v 1.1 2011/01/31 07:44:30 jlec Exp $
52
53 EAPI="3"
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 DESCRIPTION="A nice LaTeX-IDE"
69 HOMEPAGE="http://www.xm1math.net/texmaker/"
70 SRC_URI="http://www.xm1math.net/texmaker/${MY_P}.tar.bz2"
71
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
75 IUSE=""
76
77 S="${WORKDIR}/${MY_P}"
78
79 COMMON_DEPEND="
80 app-text/poppler[qt4]
81 x11-libs/libX11
82 x11-libs/libXext
83 >=x11-libs/qt-gui-4.6.1:4
84 >=x11-libs/qt-core-4.6.1:4
85 >=x11-libs/qt-webkit-4.6.1:4
86 >=app-text/hunspell-1.2.4"
87 RDEPEND="${COMMON_DEPEND}
88 virtual/latex-base
89 app-text/psutils
90 app-text/ghostscript-gpl
91 media-libs/netpbm"
92 DEPEND="${COMMON_DEPEND}
93 dev-util/pkgconfig"
94
95 PATCHES=( "${FILESDIR}/${P}-hunspell.patch" )
96
97 src_install() {
98 emake INSTALL_ROOT="${D}" install || die "make install failed"
99
100 insinto /usr/share/pixmaps/texmaker
101 doins utilities/texmaker*.png || die "doins failed."
102 doins utilities/texmaker.svg || die "doins failed."
103
104 dodoc utilities/AUTHORS utilities/CHANGELOG.txt || die "dodoc failed"
105 }
106
107 pkg_postinst() {
108 elog "A user manual with many screenshots is available at:"
109 elog "/usr/share/${PN}/usermanual_en.html"
110 }