Magellan Linux

Contents of /smage/branches/alx-0_6_0/core/rsync/rsync-3.0.7-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2506 - (show annotations) (download)
Thu Jun 30 13:55:15 2011 UTC (12 years, 11 months ago) by niro
File size: 792 byte(s)
-removed STATE variable from smage files, use global distribution file for package/distribution states
1 # $Id$
2
3 PNAME="rsync"
4 PVER="3.0.7"
5 PBUILD="r1"
6
7 PCATEGORIE="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 REMOVE_DEPRECATED_MAGE_TARGETS=1
18 ALX_ONLY_KEEP="usr/bin/rsync"
19 sminclude mbuild alx-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 }