You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

103 lines
3.4 KiB

##
## postgresql-pqxx.spec -- OpenPKG RPM Package Specification
## Copyright (c) 2000-2022 OpenPKG Project <http://openpkg.org/>
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
## the above copyright notice and this permission notice appear in all
## copies.
##
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
## SUCH DAMAGE.
##
# package information
Name: postgresql-pqxx
Summary: PostgreSQL Extension: libpqxx
URL: http://pqxx.org/
Vendor: Jeroen T. Vermeulen
Packager: OpenPKG Project
Distribution: OpenPKG Community
Class: EVAL
Group: Database
License: MIT
Version: 4.0.1
Release: 20150816
# list of sources
Source0: http://pqxx.org/download/software/libpqxx/libpqxx-%{version}.tar.gz
Patch0: postgresql-pqxx.patch
# build information
BuildPreReq: OpenPKG, openpkg >= 20160101, gcc, gcc::with_cxx = yes
PreReq: OpenPKG, openpkg >= 20160101
BuildPreReq: postgresql
PreReq: postgresql
%description
This is a PostgreSQL extension providing the C++ API wrapper.
%track
prog postgresql-pgxx = {
version = %{version}
url = http://pqxx.org/development/libpqxx/wiki/DownloadPage
regex = libpgqxx-(__VER__)\.tar\.gz
}
%prep
%setup -q -n libpqxx-%{version}
%patch -p0
%build
case "%{l_platform -t}" in
*-sunos* )
%{l_shtool} subst \
-e 's;strerror_r(0,0,0);strerror((int)0);g' \
-e 's;strerror_r((int)0, (char \*)0, (size_t)0);strerror((int)0);g' \
configure
%{l_shtool} subst \
-e 's;strerror_r(err, buf, sizeof(buf));strerror(err);g' \
src/largeobject.cxx \
configure
%{l_shtool} subst \
-e 's;\(strerror(err) ==\) -1;\1 (char *)-1;' \
src/largeobject.cxx
;;
esac
%{l_shtool} subst \
-e 's;^function \(add_compiler_opts() {\);\1;' \
-e 's;\(cut\)\( .*/configitems\)\( -f [0-9]\);\1\3\2;g' \
configure
export CC="%{l_cc}"
export CXX="%{l_cxx}"
export CFLAGS="%{l_cflags -O}"
export CXXFLAGS="%{l_cxxflags -O}"
export CPPFLAGS="%{l_cppflags}"
export LDFLAGS="%{l_ldflags}"
export LIBS="-lssl -lcrypto -lcrypt"
case "%{l_platform -t}" in
*-sunos* ) LIBS="$LIBS -lsocket -lnsl" ;;
esac
./configure \
--prefix=%{l_prefix} \
--disable-shared
%{l_make} %{l_mflags -O}
%install
%{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
%files -f files
%clean