Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/scribus: scribus-1.3.9.ebuild ChangeLog
Date: Thu, 27 Jan 2011 22:46:56
Message-Id: 20110127224643.9B9E220054@flycatcher.gentoo.org
1 hanno 11/01/27 22:46:43
2
3 Modified: ChangeLog
4 Added: scribus-1.3.9.ebuild
5 Log:
6 scribus bump
7
8 (Portage version: 2.1.9.35/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.138 app-office/scribus/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/ChangeLog?rev=1.138&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/ChangeLog?rev=1.138&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/ChangeLog?r1=1.137&r2=1.138
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/scribus/ChangeLog,v
20 retrieving revision 1.137
21 retrieving revision 1.138
22 diff -u -r1.137 -r1.138
23 --- ChangeLog 8 Nov 2010 13:00:32 -0000 1.137
24 +++ ChangeLog 27 Jan 2011 22:46:43 -0000 1.138
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-office/scribus
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/ChangeLog,v 1.137 2010/11/08 13:00:32 nelchael Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/ChangeLog,v 1.138 2011/01/27 22:46:43 hanno Exp $
31 +
32 +*scribus-1.3.9 (27 Jan 2011)
33 +
34 + 27 Jan 2011; Hanno Boeck <hanno@g.o> +scribus-1.3.9.ebuild:
35 + Version bump.
36
37 08 Nov 2010; Krzysztof Pawlik <nelchael@g.o> scribus-1.3.6.ebuild,
38 scribus-1.3.8.ebuild:
39
40
41
42 1.1 app-office/scribus/scribus-1.3.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/scribus-1.3.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/scribus-1.3.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: scribus-1.3.9.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/scribus/scribus-1.3.9.ebuild,v 1.1 2011/01/27 22:46:43 hanno Exp $
52
53 EAPI=2
54 PYTHON_DEPEND="2:2.6"
55
56 inherit cmake-utils fdo-mime multilib python
57
58 DESCRIPTION="Desktop publishing (DTP) and layout program"
59 HOMEPAGE="http://www.scribus.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="cairo debug +minimal +pdf spell"
66
67 COMMON_DEPEND="
68 dev-libs/hyphen
69 dev-libs/libxml2
70 media-libs/fontconfig
71 >=media-libs/freetype-2
72 virtual/jpeg
73 =media-libs/lcms-1*
74 media-libs/libpng
75 media-libs/tiff
76 net-print/cups
77 sys-libs/zlib
78 x11-libs/qt-gui:4
79 spell? ( app-text/aspell )
80 pdf? ( app-text/podofo )
81 cairo? ( x11-libs/cairo[X,svg] )"
82 RDEPEND="${COMMON_DEPEND}
83 app-text/ghostscript-gpl"
84 DEPEND="${COMMON_DEPEND}
85 dev-libs/boost"
86
87 PATCHES=(
88 "${FILESDIR}/${PN}-1.3.5.1-system-hyphen.patch"
89 )
90
91 DOCS="AUTHORS ChangeLog* LINKS NEWS README TODO TRANSLATION"
92
93 pkg_setup() {
94 python_set_active_version 2
95 }
96
97 src_configure() {
98 mycmakeargs=(
99 "-DHAVE_PYTHON=ON"
100 "-DPYTHON_INCLUDE_PATH=$(python_get_includedir)"
101 "-DPYTHON_LIBRARY=$(python_get_library)"
102 "-DWANT_NORPATH=ON"
103 "-DWANT_QTARTHUR=ON"
104 "-DWANT_QT3SUPPORT=OFF"
105 $(cmake-utils_use_has spell ASPELL)
106 $(cmake-utils_use_has pdf PODOFO)
107 $(cmake-utils_use_want cairo)
108 $(cmake-utils_use_want minimal NOHEADERINSTALL)
109 )
110
111 cmake-utils_src_configure
112 }
113
114 src_install() {
115 cmake-utils_src_install
116
117 doicon resources/icons/scribus.png
118 domenu scribus.desktop
119 }
120
121 pkg_postinst() {
122 fdo-mime_mime_database_update
123 }
124
125 pkg_postrm() {
126 fdo-mime_mime_database_update
127 }