head	1.6;
access;
symbols;
locks; strict;
comment	@-- @;


1.6
date	2009.04.18.13.16.07;	author rse;	state Exp;
branches;
next	1.5;
commitid	4pHXU27WTIGCZuKt;

1.5
date	2008.03.25.07.28.02;	author rse;	state Exp;
branches;
next	1.4;
commitid	b4yxl1rQn1tPEtWs;

1.4
date	2008.01.01.15.05.19;	author rse;	state Exp;
branches;
next	1.3;
commitid	B8esaHJHoduuKILs;

1.3
date	2007.09.09.08.12.58;	author rse;	state Exp;
branches;
next	1.2;
commitid	WFShG20wfgFQg2xs;

1.2
date	2007.09.07.17.53.14;	author rse;	state Exp;
branches;
next	1.1;
commitid	4SWqKyZLUtRTxPws;

1.1
date	2007.09.07.17.29.47;	author rse;	state Exp;
branches;
next	;
commitid	2pliHZdaXWiRpPws;


desc
@@


1.6
log
@bump years in copyright messages
@
text
@##
##  ssss.spec -- OpenPKG RPM Package Specification
##  Copyright (c) 2000-2009 OpenPKG Foundation e.V. <http://openpkg.net/>
##
##  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 version
%define       V_ssss     0.5
%define       V_xmltoman 0.4

#   package information
Name:         ssss
Summary:      Shamir's Secret Sharing Scheme (SSSS)
URL:          http://www.point-at-infinity.org/ssss/
Vendor:       B. Poettering
Packager:     OpenPKG Foundation e.V.
Distribution: OpenPKG Community
Class:        EVAL
Group:        Cryptography
License:      GPL
Version:      %{V_ssss}
Release:      20080325

#   list of sources
Source0:      http://point-at-infinity.org/ssss/ssss-%{V_ssss}.tar.gz
Source1:      http://ftp.debian.org/debian/pool/main/x/xmltoman/xmltoman_%{V_xmltoman}.orig.tar.gz
Patch0:       ssss.patch

#   build information
Prefix:       %{l_prefix}
BuildRoot:    %{l_buildroot}
BuildPreReq:  OpenPKG, openpkg >= 20060823, perl, perl-xml
PreReq:       OpenPKG, openpkg >= 20060823
BuildPreReq:  gmp
PreReq:       gmp
AutoReq:      no
AutoReqProv:  no

%description
    In cryptography, a secret sharing scheme is a method for
    distributing a secret amongst a group of participants, each of
    which is allocated a share of the secret. The secret can only be
    reconstructed when the shares are combined together; individual
    shares are of no use on their own. More formally, in a secret
    sharing scheme there is one dealer and n players. The dealer gives
    a secret to the players, but only when specific conditions are
    fulfilled. The dealer accomplishes this by giving each player a
    share in such a way that any group of t (for threshold) or more
    players can together reconstruct the secret but no group of less
    than t players can. Such a system is called a (t,n)-threshold
    scheme. A popular technique to implement threshold schemes uses
    polynomial interpolation ("Lagrange interpolation"). This method was
    invented by Adi Shamir in 1979. ssss(4) implements this.

%track
    prog ssss = {
        version   = %{V_ssss}
        url       = http://www.point-at-infinity.org/ssss/
        regex     = ssss-(__VER__)\.tar\.gz
    }
    prog ssss:xmltoman = {
        version   = %{V_xmltoman}
        url       = http://ftp.debian.org/debian/pool/main/x/xmltoman/
        regex     = xmltoman_(__VER__)\.orig\.tar\.gz
    }

%prep
    %setup -q
    %setup -q -T -D -a 1
    %patch -p0

%build
    %{l_make} %{l_mflags} \
        CC="%{l_cc}" \
        CFLAGS="%{l_cflags -O}" \
        CPPFLAGS="%{l_cppflags} -DNOMLOCK" \
        LDFLAGS="%{l_ldflags}" \
        ssss-split
    %{l_prefix}/bin/perl \
        xmltoman-%{V_xmltoman}/xmltoman \
        ssss.manpage.xml >ssss.1

%install
    rm -rf $RPM_BUILD_ROOT
    %{l_shtool} mkdir -f -p -m 755 \
        $RPM_BUILD_ROOT%{l_prefix}/bin \
        $RPM_BUILD_ROOT%{l_prefix}/man/man1
    %{l_shtool} install -c -s -m 755 \
        ssss-split $RPM_BUILD_ROOT%{l_prefix}/bin/
    %{l_shtool} mkln \
        $RPM_BUILD_ROOT%{l_prefix}/bin/ssss-split \
        $RPM_BUILD_ROOT%{l_prefix}/bin/ssss-combine
    %{l_shtool} install -c -m 644 \
        ssss.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
    %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}

%files -f files

%clean
    rm -rf $RPM_BUILD_ROOT

@


1.5
log
@modifying package: ssss-0.5 20080101 -> 20080325
@
text
@d3 1
a3 1
##  Copyright (c) 2000-2008 OpenPKG Foundation e.V. <http://openpkg.net/>
@


1.4
log
@Update package specifications according to OpenPKG year 2008 world order:
http://www.mail-archive.com/openpkg-announce@@openpkg.org/msg00221.html
@
text
@d26 1
a26 1
%define       V_xmltoman 0.3
d39 1
a39 1
Release:      20080101
@


1.3
log
@apply vendor fix
@
text
@d3 1
a3 2
##  Copyright (c) 2000-2007 OpenPKG Foundation e.V. <http://openpkg.net/>
##  Copyright (c) 2000-2007 Ralf S. Engelschall <http://engelschall.com/>
d39 1
a39 1
Release:      20070909
@


1.2
log
@memory locking requires root privileges
@
text
@d40 1
a40 1
Release:      20070907
@


1.1
log
@new package: ssss 0.5 (Shamir's Secret Sharing Scheme (SSSS))
@
text
@d94 1
a94 1
        CPPFLAGS="%{l_cppflags}" \
@

