From 66ccc801cf22e31f93fc68fb8ea75069ecd5a187 Mon Sep 17 00:00:00 2001 From: stephen Date: Mon, 4 Feb 2013 01:34:42 +0000 Subject: - New port math/octave-forge-database. The octave-forge package is the result of The GNU Octave Repositry project, which is intended to be a central location for custom scripts, functions and extensions for GNU Octave. contains the source for all the functions plus build and install scripts. This is database: interface to SQL databases, currently only postgresql using libpq. --- math/Makefile | 1 + math/octave-forge-database/Makefile | 33 +++++++++++++++++++++++++++++++++ math/octave-forge-database/distinfo | 2 ++ math/octave-forge-database/pkg-descr | 10 ++++++++++ math/octave-forge-database/pkg-plist | 1 + 5 files changed, 47 insertions(+) create mode 100644 math/octave-forge-database/Makefile create mode 100644 math/octave-forge-database/distinfo create mode 100644 math/octave-forge-database/pkg-descr create mode 100644 math/octave-forge-database/pkg-plist (limited to 'math') diff --git a/math/Makefile b/math/Makefile index 7e535b8bdaf3..670d3027d7bb 100644 --- a/math/Makefile +++ b/math/Makefile @@ -280,6 +280,7 @@ SUBDIR += octave-forge-communications SUBDIR += octave-forge-control SUBDIR += octave-forge-data-smoothing + SUBDIR += octave-forge-database SUBDIR += octave-forge-dataframe SUBDIR += octave-forge-dicom SUBDIR += octave-forge-econometrics diff --git a/math/octave-forge-database/Makefile b/math/octave-forge-database/Makefile new file mode 100644 index 000000000000..d6538ecc22aa --- /dev/null +++ b/math/octave-forge-database/Makefile @@ -0,0 +1,33 @@ +# Created by: Stephen Montgomery-Smith +# $FreeBSD$ + +PORTNAME= octave-forge-database +PORTVERSION= 2.0.0 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= ${DISTNAME} + +WRKSRC= ${WRKDIR}/${OCTSRC}/src + +#USE_AUTOTOOLS= autoconf +GNU_CONFIGURE= yes +USE_PGSQL= yes +ALL_TARGET= + +.include +.include "${PORTSDIR}/Mk/bsd.octave.mk" + +post-build: + ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure + cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} + +post-patch: + ${REINPLACE_CMD} 's#postgresql/##' ${WRKSRC}/* + ${REINPLACE_CMD} 's#endian.h#sys/endian.h#' ${WRKSRC}/* + +.include diff --git a/math/octave-forge-database/distinfo b/math/octave-forge-database/distinfo new file mode 100644 index 000000000000..dc97d8cee6e3 --- /dev/null +++ b/math/octave-forge-database/distinfo @@ -0,0 +1,2 @@ +SHA256 (octave-forge/database-2.0.0.tar.gz) = 28768fbcba7f9581ca730c0a389097f16e064b4d264f34d5fce54da655a0cf80 +SIZE (octave-forge/database-2.0.0.tar.gz) = 75074 diff --git a/math/octave-forge-database/pkg-descr b/math/octave-forge-database/pkg-descr new file mode 100644 index 000000000000..f57be45c0916 --- /dev/null +++ b/math/octave-forge-database/pkg-descr @@ -0,0 +1,10 @@ +The octave-forge package is the result of The GNU Octave Repositry project, +which is intended to be a central location for custom scripts, functions and +extensions for GNU Octave. contains the source for all the functions plus +build and install scripts. + +This is database. + + Interface to SQL databases, currently only postgresql using libpq. + +WWW: http://octave.sourceforge.net/ diff --git a/math/octave-forge-database/pkg-plist b/math/octave-forge-database/pkg-plist new file mode 100644 index 000000000000..a999ec86c07e --- /dev/null +++ b/math/octave-forge-database/pkg-plist @@ -0,0 +1 @@ +@comment This file intentionally left empty -- cgit