Magellan Linux

Annotation of /trunk/core/rsync/rsync-3.1.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27379 - (hide annotations) (download)
Wed Dec 23 08:32:46 2015 UTC (8 years, 6 months ago) by niro
File size: 719 byte(s)
-fixed SRC_URI
1 niro 27378 # $Id$
2    
3     PNAME="rsync"
4     PVER="3.1.2"
5     PBUILD="r1"
6    
7     PCAT="net-misc"
8    
9     DESCRIPTION="rsync is an open source utility that provides fast incremental file transfer."
10     HOMEPAGE="http://rsync.samba.org/"
11    
12     DEPEND=">= virtual/glibc"
13    
14     SRCFILE="${PNAME}-${PVER}.tar.gz"
15     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16    
17     sminclude mbuild
18    
19     SRC_URI=(
20 niro 27379 https://download.samba.org/pub/${PNAME}/src/${SRCFILE}
21 niro 27378 mirror://${PNAME}/${SRCFILE}
22     )
23    
24 niro 27379 UP2DATE="updatecmd http://rsync.samba.org/ftp/${PNAME} | grep ${PNAME}- | highesttarball gz"
25 niro 27378
26     src_compile()
27     {
28     cd ${SRCDIR}
29    
30     # we want not hassle with libpopt dependencies
31     # so we use the rsync bundled popt library
32     mconfigure --with-rsyncd-conf=/etc/rsyncd.conf --with-included-popt || die
33     mmake || die
34     }