Magellan Linux

Annotation of /branches/R11-stable/core/curl/curl-7.29.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 16722 - (hide annotations) (download)
Mon Mar 4 12:14:07 2013 UTC (11 years, 3 months ago) by niro
File size: 813 byte(s)
-release branches/R11-stable
1 niro 16452 # $Id$
2    
3     PNAME="curl"
4     PVER="7.29.0"
5     PBUILD="r1"
6    
7     PCAT="net-misc"
8    
9     DESCRIPTION="curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP."
10     HOMEPAGE="http://curl.haxx.se/"
11    
12     DEPEND=">= dev-libs/openssl-1.0.1a
13     >= app-crypt/ca-certificates-2011"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.bz2"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude mbuild
19    
20     SRC_URI=(
21     http://curl.haxx.se/download/${SRCFILE}
22     mirror://${PNAME}/${SRCFILE}
23     )
24    
25     UP2DATE="updatecmd ${HOMEPAGE}/download | grep ${PNAME}- | lasttarball"
26    
27     src_compile()
28     {
29     cd ${SRCDIR}
30    
31     mconfigure \
32     --with-gnu-ld \
33     --enable-http \
34     --enable-ftp \
35     --enable-gopher \
36     --enable-file \
37     --enable-dict \
38     --enable-telnet \
39     --enable-nonblocking \
40     --with-ssl \
41     || die
42    
43     mmake || die
44     }