1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/math/pspp/Makefile
Kurt Jaeger 2843323f5b math/pspp: 0.8.4 -> 0.8.5
Release-Announcement:
  http://lists.gnu.org/archive/html/pspp-announce/2015-06/msg00000.html

Changes:
- The FREQUENCIES and CROSSTABS commands can now generate barcharts.
- The FACTOR command can now perform PROMAX rotations.
- SPSS/PC+ system files are now supported on GET and other commands
  that read SPSS system files.  The pspp-convert program can now read
  SPSS/PC+ system files.  Writing the obsolete SPSS/PC+ system file
  format is not supported.
- SYSFILE INFO can now read SPSS/PC+ system files and SPSS portable
  files.
- FREQUENCIES: A bug was fixed where an assertion failure occured
  when an empty dataset was presented.
- The GRAPH command is now available.  Initially it supports
  scatterplots and histograms.
- The RND operator in expressions now supports additional operands
  for rounding to values other than integers and to indicate a level
  of rounding fuzz.  The default rounding fuzz may now be controlled
  and displayed with SET FUZZBITS and SHOW FUZZBITS, respectively.

PR:		201040
Submitted by:	Carlos Jacobo Puga Medina <cpm@fbsd.es> (maintainer)
2015-06-22 12:17:48 +00:00

72 lines
1.7 KiB
Makefile

# Created by: Andrew L. Neporada <andrew@chg.ru>
# $FreeBSD$
PORTNAME= pspp
PORTVERSION= 0.8.5
CATEGORIES= math
MASTER_SITES= GNU
MAINTAINER= cpm@fbsd.es
COMMENT= Program for statistical analysis of sampled data
LICENSE= GPLv3
BUILD_DEPENDS= texinfo>0:${PORTSDIR}/print/texinfo
LIB_DEPENDS= libplot.so:${PORTSDIR}/graphics/plotutils \
libgslcblas.so:${PORTSDIR}/math/gsl
USES= charsetfix gmake iconv libtool perl5 pkgconfig readline
USE_GNOME= libxml2
USE_PERL5= build
GNU_CONFIGURE= yes
MAKE_ARGS= MAKEINFO="${LOCALBASE}/bin/makeinfo" \
XMLLINT="${LOCALBASE}/bin/xmllint"
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_SUB= VERSION="${PORTVERSION}"
PORTDOCS= AUTHORS ChangeLog NEWS ONEWS README THANKS TODO
INFO= pspp pspp-dev
OPTIONS_DEFINE= DOCS GUI NLS PGSQL
OPTIONS_SUB= yes
GUI_LIB_DEPENDS= libgladeui-1.so:${PORTSDIR}/devel/glade3
GUI_RUN_DEPENDS= yelp:${PORTSDIR}/x11/yelp
GUI_USES= desktop-file-utils
GUI_USE= gnome=gtksourceview2,libglade2
GUI_CONFIGURE_WITH= cairo gui gui-tools
GUI_INSTALL_TARGET= install-icons install-ext-icons
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
NLS_MAKE_ARGS_OFF= POFILES=""
PGSQL_USES= pgsql
PGSQL_CONFIGURE_WITH= libpq
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGUI}
INSTALLS_ICONS= yes
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|: $$(INSTALL_DATA_HOOKS)|:|' ${WRKSRC}/Makefile.in
post-install:
${INSTALL_DATA} ${WRKSRC}/pspp-mode.el \
${STAGEDIR}${PREFIX}/share/emacs/site-lisp
.if ${PORT_OPTIONS:MGUI}
${RM} -r ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/mimetypes
.endif
.if ${PORT_OPTIONS:MDOCS}
(cd ${WRKSRC} && ${COPYTREE_SHARE} \
"${PORTDOCS}" ${STAGEDIR}${DOCSDIR})
.endif
.include <bsd.port.mk>