Magellan Linux

Annotation of /smage/trunk/core/sslsvd/sslsvd-1.0.0-r6.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10445 - (hide annotations) (download)
Tue Aug 22 11:30:04 2017 UTC (6 years, 8 months ago) by niro
File size: 808 byte(s)
auto added: ver bump to 1.0.0-r6
1 niro 10445 # $Id$
2    
3     PNAME="sslsvd"
4     PVER="1.0.0"
5     PBUILD="r6"
6    
7     PCAT="net-misc"
8    
9     DESCRIPTION="sslsvd - internet protocol service daemons with ssl encryption"
10     HOMEPAGE="http://smarden.org/ipsvd/"
11    
12     DEPEND=">= virtual/glibc"
13    
14     SRCFILE="ipsvd-${PVER}.tar.gz"
15     SSL_SRCFILE="matrixssl-1-8-8-open.tgz"
16     SRCDIR="${BUILDDIR}/net/ipsvd-${PVER}/src"
17    
18     sminclude mtools
19    
20     SRC_URI=(
21     http://smarden.org/ipsvd/${SRCFILE}
22     mirror://${PNAME}/${SRCFILE}
23     mirror://${PNAME}/${SSL_SRCFILE}
24     )
25    
26     UP2DATE="updatecmd ${HOMEPAGE} | grep 'latest release' | sed 's/.* \(.*.\)\..*/\1/'"
27    
28     src_prepare()
29     {
30     munpack ${SRCFILE} || die
31     cp ${SOURCEDIR}/${PNAME}/${SSL_SRCFILE} ${SRCDIR}/matrixssl.tar.gz || die
32     }
33    
34     src_compile()
35     {
36     cd ${SRCDIR}
37     mmake || die
38     }
39    
40     src_install()
41     {
42     cd ${SRCDIR}
43     minstalldir /usr/sbin || die
44     minstallexec sslsvd /usr/sbin || die
45     }