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.
 
 
 
 
 
 

112 lines
3.6 KiB

##
## pgp.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 versions
%define V_short 6.5
%define V_long 6.5.8
%define V_strip 658
# package information
Name: pgp
Summary: Pretty Good Privacy
URL: http://www.pgpi.org/
Vendor: Philip Zimmerman
Packager: OpenPKG Project
Distribution: OpenPKG Community
Class: BASE
Group: PGP
License: GPL
Version: %{V_long}
Release: 20080101
# list of sources
Source0: ftp://ftp.pgpi.org/pub/pgp/%{V_short}/%{V_long}/pgpsrc%{V_strip}unix.tar.gz
Patch0: pgp.patch
# build information
BuildPreReq: OpenPKG, openpkg >= 20160101, make, gcc
PreReq: OpenPKG, openpkg >= 20160101
%description
PGP (Pretty Good Privacy) is a public key encryption program
originally written by Phil Zimmermann in 1991.
%track
prog pgp = {
version = %{version}
url = ftp://ftp.pgpi.org/pub/pgp/6.5/
regex = (6\.\d+\.\d+)
}
%prep
%setup -c -n pgp-%{V_long}
rm -rf pgpsrc pgp-%{V_long}
%{l_gzip} -d -c %{SOURCE pgpsrc%{V_strip}unix.tar.gz} | %{l_tar} xf -
%{l_gzip} -d -c pgpsrc%{V_strip}unix.tar.gz | %{l_tar} xf -
cd pgpsrc
%patch -p0
%{l_shtool} subst \
-e 's; -fwritable-strings;;' \
libs/network/ldaplib/Make-common libs/network/ldaplib/*/Makefile
%build
cd pgpsrc
( cd libs/pfl
CC="%{l_cc}" CFLAGS="%{l_cflags -O}" ./configure
%{l_make} %{l_mflags} DEBUG=0
) || exit $?
( cd libs/pgpcdk
CC="%{l_cc}" CFLAGS="%{l_cflags -O} -trigraphs" ./configure
%{l_make} %{l_mflags} headers
%{l_make} %{l_mflags} DEBUG=0
) || exit $?
( cd clients/pgp/shared
CC="%{l_cc}" CFLAGS="%{l_cflags -O} -trigraphs" ./configure
%{l_make} %{l_mflags} DEBUG=0
) || exit $?
( cd clients/pgp/cmdline
CFLAGS="%{l_cflags -O} -trigraphs"
case "%{l_platform -t}" in
*-freebsd* ) CFLAGS="$CFLAGS -pthread" ;;
esac
CC="%{l_cc}" CFLAGS="$CFLAGS" LIBS="$LIBS" ./configure
%{l_make} %{l_mflags} DEBUG=0
) || exit $?
%install
%{l_shtool} mkdir -f -p -m 755 \
$RPM_BUILD_ROOT%{l_prefix}/bin \
$RPM_BUILD_ROOT%{l_prefix}/man/man1
( cd pgpsrc/clients/pgp/cmdline
%{l_shtool} install -c -s -m 755 \
pgp $RPM_BUILD_ROOT%{l_prefix}/bin/
%{l_shtool} install -c -m 644 \
packaging/pgp-*/man/man1/pgp.1 \
$RPM_BUILD_ROOT%{l_prefix}/man/man1/
) || exit $?
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
%files -f files
%clean