Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/pspp: pspp-0.8.1.ebuild ChangeLog
Date: Wed, 30 Oct 2013 16:21:52
Message-Id: 20131030162148.DD8FB20047@flycatcher.gentoo.org
1 bicatali 13/10/30 16:21:48
2
3 Modified: ChangeLog
4 Added: pspp-0.8.1.ebuild
5 Log:
6 Version bump, patches not needed anymore, fix bug #489526, thanks cujyaz@××××××××××.com
7
8 (Portage version: 2.2.7-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.25 sci-mathematics/pspp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/pspp/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/pspp/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/pspp/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 10 Sep 2013 02:40:07 -0000 1.24
24 +++ ChangeLog 30 Oct 2013 16:21:48 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-mathematics/pspp
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/ChangeLog,v 1.24 2013/09/10 02:40:07 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/ChangeLog,v 1.25 2013/10/30 16:21:48 bicatali Exp $
30 +
31 +*pspp-0.8.1 (30 Oct 2013)
32 +
33 + 30 Oct 2013; Sébastien Fabbro <bicatali@g.o> +pspp-0.8.1.ebuild:
34 + Version bump, patches not needed anymore, fix bug #489526, thanks
35 + cujyaz@××××××××××.com
36
37 10 Sep 2013; Patrick Lauer <patrick@g.o> pspp-0.8.0.ebuild:
38 Whitespace
39
40
41
42 1.1 sci-mathematics/pspp/pspp-0.8.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/pspp/pspp-0.8.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/pspp/pspp-0.8.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pspp-0.8.1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/pspp-0.8.1.ebuild,v 1.1 2013/10/30 16:21:48 bicatali Exp $
52
53 EAPI=5
54
55 AUTOTOOLS_IN_SOURCE_BUILD=1
56
57 inherit eutils elisp-common autotools-utils multilib
58
59 DESCRIPTION="Program for statistical analysis of sampled data"
60 HOMEPAGE="http://www.gnu.org/software/pspp/pspp.html"
61 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
62 LICENSE="GPL-3"
63
64 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65 SLOT="0"
66 IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
67
68 RDEPEND="
69 dev-libs/libxml2:2
70 sci-libs/gsl
71 sys-devel/gettext
72 sys-libs/readline
73 sys-libs/zlib
74 virtual/libiconv
75 cairo? ( x11-libs/cairo )
76 emacs? ( virtual/emacs )
77 gtk? ( x11-libs/gtk+:2
78 gnome-base/libglade:2.0
79 >=x11-libs/gtksourceview-2.2:2.0 )
80 ncurses? ( sys-libs/ncurses )
81 postgres? ( dev-db/postgresql-server )"
82 DEPEND="${RDEPEND}
83 virtual/pkgconfig
84 doc? ( virtual/latex-base )"
85
86 SITEFILE=50${PN}-gentoo.el
87
88 # if autoreconf is needed, might need patch for gettext in
89 # https://savannah.gnu.org/bugs/index.php?39708
90
91 src_configure() {
92 local myeconfargs=(
93 --disable-rpath
94 $(use_enable nls)
95 $(use_with cairo)
96 $(use_with gtk gui)
97 $(use_with ncurses libncurses)
98 $(use_with perl perl-module)
99 $(use_with postgres libpq)
100 )
101 autotools-utils_src_configure
102 }
103
104 src_compile() {
105 autotools-utils_src_compile pkglibdir="${EPREFIX}/usr/$(get_libdir)"
106 use doc && emake html pdf
107 use emacs && elisp-compile *.el
108 }
109
110 src_install() {
111 autotools-utils_src_install pkglibdir="${EPREFIX}/usr/$(get_libdir)"
112
113 if use examples; then
114 insinto /usr/share/doc/${PF}
115 doins -r examples
116 fi
117
118 if use doc; then
119 dohtml -r doc/pspp{,-dev}.html
120 dodoc doc/pspp{,-dev}.pdf
121 fi
122
123 if use emacs; then
124 elisp-install ${PN} *.el *.elc
125 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
126 fi
127 }
128
129 pkg_postinst () {
130 use emacs && elisp-site-regen
131 }
132
133 pkg_postrm() {
134 use emacs && elisp-site-regen
135 }