public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
Date: Sun, 24 Jul 2016 12:27:48 +0000 (UTC)	[thread overview]
Message-ID: <1469363266.a9d78b3a5bc21f98448de6dbc8242a9fed52cdc2.jer@gentoo> (raw)

commit:     a9d78b3a5bc21f98448de6dbc8242a9fed52cdc2
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 12:27:23 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Jul 24 12:27:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d78b3a

sci-mathematics/pspp: Version bump.

Package-Manager: portage-2.3.0

 sci-mathematics/pspp/Manifest           |  1 +
 sci-mathematics/pspp/pspp-0.10.2.ebuild | 79 +++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 7417e1e..2a524b4 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,3 +1,4 @@
 DIST pspp-0.10.1.tar.gz 7269109 SHA256 44cc08864de736880bc0d7e2b1f8c8493ac0e0c2164a4f9471077608f00c8677 SHA512 a7f4eec3858340743ff845e67028af76d79a58968ceaa19a87e0443751917b2d70251e53231ecce15c937c9640ac733e00603baa76b4266d693375ab70b870b5 WHIRLPOOL 9a195051d5279a86cd05d586ca5a845443f08346f47aec859a3e768c38d5517f23f47d40cc6fb00c6af6c01af624d251575edfb34dfb0f7c7ee3def1a008a1c7
+DIST pspp-0.10.2.tar.gz 7316470 SHA256 f77cacae6948689a60f1a5808a5d2e183c1cd0847c7fc6142646c63814c0daa9 SHA512 7d6656c03da46b088e87cba7a947d1e56031ff50d704be8201a38563515cf5cf324a05f1d4999ba8aec7b2269a8fdbd09374a11374c9c1b9dd6d78d34fda4b76 WHIRLPOOL f66f0ca98dce4de4b323aa42445d0c8fe3c7d252cd8ed6d1ad1dd961186bf063b9c92114a92e9afb2149b35c03fa595720c8a35b33ff81a56eb5e9e029c85119
 DIST pspp-0.8.1.tar.gz 6514528 SHA256 fd48145d2ff77c39f624e26bf3c9a5623c2afaee7c040675b06cb4ce57d31d62 SHA512 2df758b3a2d8eba724d84ce7d77a6c0bbe469a11b86a8eb4227ec12a4957f468e74b3af0f81c953d87403a962937eef2680979a21ceba4fe8b93b55252b84a18 WHIRLPOOL 5be6ebcecffc3d8a7da669ea49028307b784a5b8b5d8a510d0f9e82a3740800966da5390f8abc120b55c9c621850be906f7610f86404b92c994d9a72697d413d
 DIST pspp-0.8.3.tar.gz 6247760 SHA256 adb8de281098b0d8632a8f2ea2af6514100786cf946f07a3c268d4baff15316f SHA512 7645a2de09ed1d6f1a53900961791b64b9420f457278d19e62ca7dabdb02b01ee78cdab0efddae384dc7deff65f7c5256227538caed89537efa014437937a61c WHIRLPOOL cff5921acce8bb3654ab0d10d63c42af8d5a9745263f423900ee290a30f1748aff023739ba49fabca33517e3deaf3fb0513a5fac7d0cf50170ba4b870d0ededf

diff --git a/sci-mathematics/pspp/pspp-0.10.2.ebuild b/sci-mathematics/pspp/pspp-0.10.2.ebuild
new file mode 100644
index 0000000..bcaea41
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-0.10.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils elisp-common
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
+
+RDEPEND="
+	dev-libs/libxml2:2=
+	sci-libs/gsl:0=
+	sys-devel/gettext:0=
+	sys-libs/readline:0=
+	sys-libs/zlib:0=
+	virtual/libiconv
+	cairo? ( x11-libs/cairo:0=[svg] )
+	emacs? ( virtual/emacs )
+	gtk? (
+			x11-libs/gtk+:3=
+			x11-libs/gtksourceview:3.0= )
+	ncurses? ( sys-libs/ncurses:0= )
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )"
+
+SITEFILE=50${PN}-gentoo.el
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_enable static-libs static) \
+		$(use_with cairo) \
+		$(use_with gtk gui) \
+		$(use_with ncurses libncurses) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+	use doc && emake html pdf
+	use emacs && elisp-compile *.el
+}
+
+src_install() {
+	default
+	if use doc; then
+		dodoc doc/pspp{,-dev}.pdf
+		insinto /usr/share/doc/${PF}/html
+		dodoc -r doc/pspp{,-dev}.html
+	fi
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+	fi
+	if use emacs; then
+		elisp-install ${PN} *.el *.elc
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+	prune_libtool_files --all
+}
+
+pkg_postinst () {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


             reply	other threads:[~2016-07-24 12:27 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-24 12:27 Jeroen Roovers [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-29 19:16 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/ Sam James
2025-04-29 19:16 Sam James
2025-04-29 19:16 Sam James
2025-04-29 19:16 Sam James
2024-07-31  9:24 Pacho Ramos
2023-01-23 20:58 Michael Orlitzky
2023-01-23 19:59 Arthur Zamarin
2023-01-13 16:52 Sam James
2022-10-18  2:18 Sam James
2022-10-09  8:55 Agostino Sarubbo
2022-10-09  8:48 Agostino Sarubbo
2022-10-08 18:55 Sam James
2022-10-08 18:55 Sam James
2022-07-05  3:57 Sam James
2022-06-26  6:27 Sam James
2022-06-24  8:24 Agostino Sarubbo
2022-06-23 18:42 Sam James
2022-06-07  6:34 Sam James
2020-11-26 22:56 David Seifert
2020-11-26 19:41 Sam James
2020-11-01 15:50 Sam James
2020-10-18 15:11 Thomas Deutschmann
2019-12-20 22:49 Ulrich Müller
2019-01-26  1:36 Andreas K. Hüttel
2019-01-17 16:58 Mikle Kolyada
2019-01-02 19:01 Thomas Deutschmann
2018-12-24 22:39 Zac Medico
2018-12-07 20:11 Alexey Shvetsov
2016-05-05 22:27 David Seifert
2016-05-05 22:27 David Seifert
2016-05-05 22:27 David Seifert
2016-04-29 21:47 Sebastien Fabbro

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1469363266.a9d78b3a5bc21f98448de6dbc8242a9fed52cdc2.jer@gentoo \
    --to=jer@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox