Magellan Linux

Annotation of /smage/branches/alx07x-stable/core/sslsvd/sslsvd-1.0.0-r7.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15131 - (hide annotations) (download)
Fri Aug 7 07:27:40 2020 UTC (3 years, 9 months ago) by niro
File size: 808 byte(s)
-release branches/alx07x-stable
1 niro 14051 # $Id$
2    
3     PNAME="sslsvd"
4     PVER="1.0.0"
5     PBUILD="r7"
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     }