Magellan Linux

Annotation of /smage/trunk/core/rsync/rsync-3.0.7-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 944 - (hide annotations) (download)
Fri Dec 10 17:00:17 2010 UTC (13 years, 5 months ago) by niro
File size: 834 byte(s)
auto added: ver bump to 3.0.7-r1
1 niro 944 # $Id: rsync-3.0.6-r2.smage2 132 2010-01-07 17:53:56Z niro $
2    
3     PNAME="rsync"
4     PVER="3.0.7"
5     PBUILD="r1"
6    
7     PCATEGORIE="net-misc"
8     STATE="unstable"
9    
10     DESCRIPTION="rsync is an open source utility that provides fast incremental file transfer."
11     HOMEPAGE="http://rsync.samba.org/"
12    
13     DEPEND=">= virtual/glibc"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     MCORE_ONLY_KEEP="usr/bin/rsync"
19     sminclude mbuild mcore-split
20    
21     SRC_URI=(
22     http://samba.anu.edu.au/ftp/${PNAME}/src/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd http://rsync.samba.org/ftp/${PNAME} | grep ${PNAME}- | lasttarball gz"
27    
28     src_compile()
29     {
30     cd ${SRCDIR}
31    
32     # we want not hassle with libpopt dependencies
33     # so we use the rsync bundled popt library
34     mconfigure --with-rsyncd-conf=/etc/rsyncd.conf --with-included-popt || die
35     mmake || die
36     }