Magellan Linux

Contents of /trunk/core/curl/curl-7.21.7-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8919 - (show annotations) (download)
Mon Aug 22 12:20:01 2011 UTC (12 years, 8 months ago) by niro
File size: 800 byte(s)
auto added: ver bump to 7.21.7-r1
1 # $Id$
2
3 PNAME="curl"
4 PVER="7.21.7"
5 PBUILD="r1"
6
7 PCATEGORIE="net-misc"
8 STATE="unstable"
9
10 DESCRIPTION="curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP."
11 HOMEPAGE="http://curl.haxx.se/"
12
13 DEPEND=">= dev-libs/openssl-0.9.8"
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 }