diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /sci-mathematics/pspp | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'sci-mathematics/pspp')
-rw-r--r-- | sci-mathematics/pspp/Manifest | 2 | ||||
-rw-r--r-- | sci-mathematics/pspp/files/50pspp-gentoo.el | 6 | ||||
-rw-r--r-- | sci-mathematics/pspp/files/pspp-0.8.0-gettext.patch | 10 | ||||
-rw-r--r-- | sci-mathematics/pspp/files/pspp-0.8.1-oos.patch | 28 | ||||
-rw-r--r-- | sci-mathematics/pspp/files/pspp-0.8.1-underlinking.patch | 29 | ||||
-rw-r--r-- | sci-mathematics/pspp/metadata.xml | 13 | ||||
-rw-r--r-- | sci-mathematics/pspp/pspp-0.8.1-r1.ebuild | 91 | ||||
-rw-r--r-- | sci-mathematics/pspp/pspp-0.8.3.ebuild | 90 |
8 files changed, 269 insertions, 0 deletions
diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest new file mode 100644 index 000000000000..2ba1ccf2655b --- /dev/null +++ b/sci-mathematics/pspp/Manifest @@ -0,0 +1,2 @@ +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/files/50pspp-gentoo.el b/sci-mathematics/pspp/files/50pspp-gentoo.el new file mode 100644 index 000000000000..adac2e8ed1da --- /dev/null +++ b/sci-mathematics/pspp/files/50pspp-gentoo.el @@ -0,0 +1,6 @@ + +;;; pspp site-lisp configuration + +(add-to-list 'load-path "@SITELISP@") +(autoload 'pspp-mode "pspp-mode" nil t) +(add-to-list 'auto-mode-alist '("\\.sps\\'" . pspp-mode)) diff --git a/sci-mathematics/pspp/files/pspp-0.8.0-gettext.patch b/sci-mathematics/pspp/files/pspp-0.8.0-gettext.patch new file mode 100644 index 000000000000..73fb8dc8790a --- /dev/null +++ b/sci-mathematics/pspp/files/pspp-0.8.0-gettext.patch @@ -0,0 +1,10 @@ +--- configure.ac.orig 2013-08-06 10:18:37.329909242 -0700 ++++ configure.ac 2013-08-06 10:18:51.011975942 -0700 +@@ -30,6 +30,7 @@ + + dnl Disable automatic po/ support, because PSPP provides its own po/ support. + AC_PROVIDE([AM_PO_SUBDIRS]) ++AM_GNU_GETTEXT_VERSION([0.17]) + AM_GNU_GETTEXT([external], [need-ngettext]) + LIBS="$LIBINTL $LIBS" + diff --git a/sci-mathematics/pspp/files/pspp-0.8.1-oos.patch b/sci-mathematics/pspp/files/pspp-0.8.1-oos.patch new file mode 100644 index 000000000000..51612b993abd --- /dev/null +++ b/sci-mathematics/pspp/files/pspp-0.8.1-oos.patch @@ -0,0 +1,28 @@ + src/ui/gui/automake.mk | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/ui/gui/automake.mk b/src/ui/gui/automake.mk +index 47a3215..24f5b0b 100644 +--- a/src/ui/gui/automake.mk ++++ b/src/ui/gui/automake.mk +@@ -333,16 +333,16 @@ PHONY += yelp-check + AM_CPPFLAGS += -Isrc + + src/ui/gui/pspp.desktop: src/ui/gui/gen-dot-desktop.sh $(POFILES) +- POFILES="$(POFILES)" top_builddir="$(top_builddir)" $(SHELL) $< > $@ ++ POFILES="$(POFILES)" top_builddir="$(top_builddir)" $(SHELL) $< > ${top_srcdir}/$@ + + CLEANFILES+=src/ui/gui/pspp.desktop + + src/ui/gui/psppire-marshal.c: src/ui/gui/marshaller-list +- echo '#include <config.h>' > $@ +- $(GLIB_GENMARSHAL) --body --prefix=psppire_marshal $? >> $@ ++ echo '#include <config.h>' > ${top_srcdir}/$@ ++ $(GLIB_GENMARSHAL) --body --prefix=psppire_marshal $? >> ${top_srcdir}/$@ + + src/ui/gui/psppire-marshal.h: src/ui/gui/marshaller-list +- $(GLIB_GENMARSHAL) --header --prefix=psppire_marshal $? > $@ ++ $(GLIB_GENMARSHAL) --header --prefix=psppire_marshal $? > ${top_srcdir}/$@ + + desktopdir = $(datadir)/applications + desktop_DATA = src/ui/gui/pspp.desktop diff --git a/sci-mathematics/pspp/files/pspp-0.8.1-underlinking.patch b/sci-mathematics/pspp/files/pspp-0.8.1-underlinking.patch new file mode 100644 index 000000000000..2c533ee49658 --- /dev/null +++ b/sci-mathematics/pspp/files/pspp-0.8.1-underlinking.patch @@ -0,0 +1,29 @@ + src/automake.mk | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/src/automake.mk b/src/automake.mk +index 73ff813..8524000 100644 +--- a/src/automake.mk ++++ b/src/automake.mk +@@ -20,7 +20,7 @@ src_libpspp_core_la_LIBADD = \ + src/data/libdata.la \ + src/libpspp/liblibpspp.la \ + $(LIBXML2_LIBS) $(PG_LIBS) \ +- gl/libgl.la ++ gl/libgl.la $(CAIRO_LIBS) + + src_libpspp_la_SOURCES = + +@@ -28,10 +28,11 @@ src_libpspp_la_CFLAGS = $(GSL_CFLAGS) + src_libpspp_la_LDFLAGS = -release $(VERSION) + + src_libpspp_la_LIBADD = \ ++ src/libpspp-core.la \ + src/language/liblanguage.la \ + src/math/libpspp-math.la \ + src/output/liboutput.la \ +- $(GSL_LIBS) ++ $(GSL_LIBS) $(CAIRO_LIBS) $(LIBXML2_LIBS) + + include $(top_srcdir)/src/math/automake.mk + include $(top_srcdir)/src/output/automake.mk diff --git a/sci-mathematics/pspp/metadata.xml b/sci-mathematics/pspp/metadata.xml new file mode 100644 index 000000000000..d62366a4d9b2 --- /dev/null +++ b/sci-mathematics/pspp/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sci-mathematics</herd> + <longdescription lang="en"> + PSPP is a program for statistical analysis of sampled data. It + interprets commands in the SPSS language and produces tabular and + graphical output in ASCII, HTML, or PostScript format. + PSPP supports a large subset of SPSS's transformation language. Its + statistical procedure support is limited but growing. + PSPP has both text-based and a GTK+ based graphical user interfaces. +</longdescription> +</pkgmetadata> diff --git a/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild b/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild new file mode 100644 index 000000000000..ef3f0f8f3054 --- /dev/null +++ b/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 + +inherit eutils elisp-common autotools-utils multilib + +DESCRIPTION="Program for statistical analysis of sampled data" +HOMEPAGE="http://www.gnu.org/software/pspp/pspp.html" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +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 + sys-devel/gettext + sys-libs/readline + sys-libs/zlib + virtual/libiconv + cairo? ( x11-libs/cairo ) + emacs? ( virtual/emacs ) + gtk? ( + gnome-base/libglade:2.0 + x11-libs/gtk+:2 + >=x11-libs/gtksourceview-2.2:2.0 ) + ncurses? ( sys-libs/ncurses ) + postgres? ( dev-db/postgresql[server] )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( virtual/latex-base )" + +SITEFILE=50${PN}-gentoo.el + +PATCHES=( + "${FILESDIR}"/${PN}-0.8.0-gettext.patch + "${FILESDIR}"/${P}-underlinking.patch + "${FILESDIR}"/${P}-oos.patch +) + +src_configure() { + local myeconfargs=( + --disable-rpath + $(use_enable nls) + $(use_with cairo) + $(use_with gtk gui) + $(use_with ncurses libncurses) + $(use_with perl perl-module) + $(use_with postgres libpq) + ) + autotools-utils_src_configure +} + +src_compile() { + autotools-utils_src_compile pkglibdir="${EPREFIX}/usr/$(get_libdir)" + use doc && autotools-utils_src_compile html pdf + use emacs && elisp-compile *.el +} + +src_install() { + if use doc; then + HTML_DOCS=( "${BUILD_DIR}"/doc/pspp{,-dev}.html ) + DOCS=( "${BUILD_DIR}"/doc/pspp{,-dev}.pdf ) + fi + + autotools-utils_src_install pkglibdir="${EPREFIX}/usr/$(get_libdir)" + + 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 +} + +pkg_postinst () { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/sci-mathematics/pspp/pspp-0.8.3.ebuild b/sci-mathematics/pspp/pspp-0.8.3.ebuild new file mode 100644 index 000000000000..86461736cfc8 --- /dev/null +++ b/sci-mathematics/pspp/pspp-0.8.3.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 + +inherit eutils elisp-common autotools-utils multilib + +DESCRIPTION="Program for statistical analysis of sampled data" +HOMEPAGE="http://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= ) + emacs? ( virtual/emacs ) + gtk? ( + gnome-base/libglade:2.0 + x11-libs/gtk+:2 + >=x11-libs/gtksourceview-2.2:2.0 ) + ncurses? ( sys-libs/ncurses ) + postgres? ( dev-db/postgresql:=[server] )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( virtual/latex-base )" + +SITEFILE=50${PN}-gentoo.el + +PATCHES=( + "${FILESDIR}"/${PN}-0.8.0-gettext.patch + "${FILESDIR}"/${PN}-0.8.1-underlinking.patch + "${FILESDIR}"/${PN}-0.8.1-oos.patch +) + +src_configure() { + local myeconfargs=( + $(use_enable nls) + $(use_with cairo) + $(use_with gtk gui) + $(use_with ncurses libncurses) + $(use_with perl perl-module) + $(use_with postgres libpq) + ) + autotools-utils_src_configure +} + +src_compile() { + autotools-utils_src_compile pkglibdir="${EPREFIX}/usr/$(get_libdir)" + use doc && autotools-utils_src_compile html pdf + use emacs && elisp-compile *.el +} + +src_install() { + if use doc; then + HTML_DOCS=( "${BUILD_DIR}"/doc/pspp{,-dev}.html ) + DOCS=( "${BUILD_DIR}"/doc/pspp{,-dev}.pdf ) + fi + + autotools-utils_src_install pkglibdir="${EPREFIX}/usr/$(get_libdir)" + + 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 +} + +pkg_postinst () { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |