Magellan Linux

Contents of /trunk/toolchain/toolchain-rsync/toolchain-rsync-2.6.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 153 - (show annotations) (download)
Mon Jul 4 00:41:38 2005 UTC (18 years, 10 months ago) by niro
File size: 1826 byte(s)
new toolchain create utilities and smages

1 # $Header: /home/cvsd/magellan-cvs/magellan-src/toolchain/toolchain-rsync/toolchain-rsync-2.6.4-r1.smage2,v 1.1 2005-07-04 00:41:38 niro Exp $
2
3 PNAME="toolchain-rsync"
4 PVER="2.6.4"
5 PBUILD="r1"
6
7 SRCFILE="rsync-${PVER}.tar.gz"
8 SRCDIR="${BUILDDIR}/rsync-${PVER}"
9
10 SRC_URI=(
11 mirror://rsync/${SRCFILE}
12 )
13
14 ## global toolchain var ##
15 # export CFLAGS, CHOST, TOOLCHAIN_PREFIX
16 export CFLAGS="-mtune=i486 -Os -pipe"
17 export CXXFLAGS="${CFLAGS}"
18 export TOOLCHAIN_PREFIX="/tools"
19
20 zapmost() {
21 local rootdir
22 rootdir="${1}/"
23 [ ! -e "$rootdir" ] && echo "zapmost: $rootdir not found; skipping..." && return 1
24 install -d ${BUILDDIR}/zap
25 local dirs
26 shift
27 local x
28 for x in ${*}
29 do
30 if [ "${x##*/}" = "${x}" ]
31 then
32 #one deep
33 mv ${rootdir}${x} ${BUILDDIR}/zap
34 else
35 #more than one deep; create intermediate directories
36 dirs=${x%/*}
37 install -d ${BUILDDIR}/zap/${dirs}
38 mv ${rootdir}${x} ${BUILDDIR}/zap/${x}
39 fi
40 done
41 rm -rf ${rootdir}*
42 mv ${BUILDDIR}/zap/* ${rootdir}
43 }
44
45
46 src_prepare() {
47 munpack ${SRCFILE} || die
48 cd ${SRCDIR}
49
50 # change confdir to /etc/rsync rather than just /etc
51 # (the --sysconfdir configure option doesn't work)
52 sed -i 's|/etc/rsyncd.conf|/etc/rsync/rsyncd.conf|g' \
53 ${SRCDIR}/rsync.h || die
54
55 # yes, updating the man page is very important
56 sed -i 's|/etc/rsyncd|/etc/rsync/rsyncd|g' \
57 ${SRCDIR}/rsyncd.conf.5 || die
58 }
59
60 src_compile() {
61 cd ${SRCDIR}
62
63 # we want not hassle with libpopt dependencies
64 # so we used with rsync bundled popt library
65 ./configure \
66 --host=${CHOST} \
67 --prefix=${TOOLCHAIN_PREFIX} \
68 --with-rsh=ssh \
69 --with-included-popt \
70 --disable-nls \
71 || die
72
73 mmake || die
74 }
75
76 src_install() {
77 cd ${SRCDIR}
78 make DESTDIR=${BINDIR} install || die
79
80 # remove unwanted stuff
81 KEEPFILES="bin/rsync"
82
83 zapmost ${BINDIR}/${TOOLCHAIN_PREFIX} ${KEEPFILES} || die
84 }