Changeset 402 in MondoRescue
- Timestamp:
- Feb 17, 2006, 7:05:06 PM (19 years ago)
- Location:
- branches/stable
- Files:
-
- 1 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/documentation/Makefile.howto
r401 r402 63 63 @echo "Delivering mondorescue howto" 64 64 @echo "" 65 @if [ "${INSTALLDIR}" != "" ]; then cp -a $(TARGET).{html,pdf,ps,txt,rtf} $(TARGET) ${INSTALLDIR} ; cp -a ${IMAGESDIR} ${INSTALLDIR}/$(TARGET) ; else echo "No INSTALLDIR specified aborting install"; fi65 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; cp -a $(TARGET).{html,pdf,ps,txt,rtf} $(TARGET) ${INSTALLDIR} ; cp -a ${IMAGESDIR} ${INSTALLDIR}/$(TARGET) ; else echo "No INSTALLDIR specified aborting install"; fi -
branches/stable/documentation/Makefile.man
r401 r402 39 39 %.8.ps: %.8 40 40 @man2dvi ./$< > $<.dvi 41 @dvips $<.dvi -o $@41 @dvips -q $<.dvi -o $@ 42 42 @rm -f $<.dvi 43 43 -
branches/stable/documentation/mindi.8
r401 r402 21 21 .\" USA. 22 22 .\" 23 .TH MINDI 8 " February 2006" "MondoRescue"23 .TH MINDI 8 "DDD" "Mondo Rescue VVV-rRRR" 24 24 .SH NAME 25 25 mindi \- a tool for creating boot/root disks -
branches/stable/documentation/mondoarchive.8
r401 r402 1 .TH mondoarchive 8 "February 2006" Linux MondoRescue 1 .\" This is free documentation; you can redistribute it and/or 2 .\" modify it under the terms of the GNU General Public License as 3 .\" published by the Free Software Foundation; either version 2 of 4 .\" the License, or (at your option) any later version. 5 .\" 6 .\" The GNU General Public License's references to "object code" 7 .\" and "executables" are to be interpreted as the output of any 8 .\" document formatting or typesetting system, including 9 .\" intermediate and printed output. 10 .\" 11 .\" This manual is distributed in the hope that it will be useful, 12 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of 13 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 .\" GNU General Public License for more details. 15 .\" 16 .\" You should have received a copy of the GNU General Public 17 .\" License along with this manual; if not, write to the Free 18 .\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, 19 .\" USA. 20 .\" 21 .TH mondoarchive 8 "DDD" "Mondo Rescue VVV-rRRR" 2 22 3 23 .SH NAME -
branches/stable/documentation/mondorescue-howto.sgml
r388 r402 1 1 <!DOCTYPE BOOK PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ 2 2 <!ENTITY curdate "DDD"> 3 <!ENTITY curver "VVV ">3 <!ENTITY curver "VVV-rRRR"> 4 4 5 5 <!ENTITY WWWB "http://www.mondorescue.org/"> -
branches/stable/documentation/mondorestore.8
r401 r402 1 .TH mondorestore 8 "February 2006" Linux MondoRescue 1 .\" This is free documentation; you can redistribute it and/or 2 .\" modify it under the terms of the GNU General Public License as 3 .\" published by the Free Software Foundation; either version 2 of 4 .\" the License, or (at your option) any later version. 5 .\" 6 .\" The GNU General Public License's references to "object code" 7 .\" and "executables" are to be interpreted as the output of any 8 .\" document formatting or typesetting system, including 9 .\" intermediate and printed output. 10 .\" 11 .\" This manual is distributed in the hope that it will be useful, 12 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of 13 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 .\" GNU General Public License for more details. 15 .\" 16 .\" You should have received a copy of the GNU General Public 17 .\" License along with this manual; if not, write to the Free 18 .\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, 19 .\" USA. 20 .\" 21 .TH mondorestore 8 "DDD" "Mondo Rescue VVV-rRRR" 2 22 3 23 .SH NAME -
branches/stable/mondo/Makefile.am
r30 r402 1 1 AUTOMAKE_OPTIONS = 1.7 2 2 SUBDIRS = mondo 3 man8_MANS = mondo/mondoarchive/mondoarchive.8 mondo/mondorestore/mondorestore.83 man8_MANS = docs/man/mondoarchive.8 docs/man/mondorestore.8 -
branches/stable/mondo/distributions/rpm/mondo.spec
r401 r402 61 61 62 62 %build 63 %configure %{!?_without_xmondo:--with-x11}63 %configure 64 64 %{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 65 65 … … 82 82 %doc ChangeLog svn.log 83 83 %doc INSTALL COPYING README TODO AUTHORS NEWS 84 %doc docs/en/mondorescue-howto.html docs/en/mondorescue-howto.pdf 84 85 85 86 %attr(755,root,root) %{_sbindir}/* … … 88 89 %{_mandir} 89 90 90 #%{!?_without_xmondo:%files xmondo}91 #%{!?_without_xmondo:%{_sbindir}/xmondo}92 #%{!?_without_xmondo:%{_libdir}/libXmondo-%{libversion}.so}93 #%{!?_without_xmondo:%{_libdir}/libXmondo.so}94 #%{!?_without_xmondo:%{_datadir}/mondo/mondo.png}95 96 91 %changelog 92 * Fri Feb 17 2006 Bruno Cornec <bcornec@users.berlios.de> 2.0.7 93 - Updated to 2.0.7 94 - RPM sepc files are now generated 95 97 96 * Fri Nov 05 2005 Bruno Cornec <bcornec@users.berlios.de> 1.05 98 97 - ia64 is now working -
branches/stable/mondo/mondo/common/my-stuff.h
r296 r402 443 443 * Malloc @p x to be MAX_STR_LEN bytes and call fatal_error() if we're out of memory. 444 444 */ 445 #define malloc_string(x) { x = malloc(MAX_STR_LEN); if (!x) { fatal_error("Unable to malloc"); } x[0] = x[1] = '\0'; }445 #define malloc_string(x) { x = (char *)malloc(MAX_STR_LEN); if (!x) { fatal_error("Unable to malloc"); } x[0] = x[1] = '\0'; } 446 446 447 447 /** -
branches/stable/tools/livwww
r401 r402 8 8 # Please replace with your destination 9 9 # 10 11 10 12 LOCALDIR=/var/www/html/mondo 11 13 LOCALDOC=/var/www/html/mondo-doc … … 18 20 if [ "$1" = "-f" ]; then 19 21 force=1 22 optsvn="" 20 23 shift 24 else 25 optsvn="--force" 21 26 fi 22 27 … … 40 45 cd ${BASE}/svn 41 46 42 rm -rf $LOCALDIR 43 svn export ${VER}/website $LOCALDIR 47 if [ $force -eq 1 ]; then 48 echo "Purging $LOCALDIR" 49 rm -rf $LOCALDIR 50 fi 44 51 45 rm -rf $LOCALDOC 46 svn export ${VER}/documentation $LOCALDOC 52 svn export $optsvn ${VER}/website $LOCALDIR 53 54 if [ $force -eq 1 ]; then 55 echo "Purging $LOCALDOC" 56 rm -rf $LOCALDOC 57 fi 58 59 svn export $optsvn ${VER}/documentation $LOCALDOC 60 61 # 62 # Version handling 63 # 64 $TOOLHOME/expandver $LOCALDIR/top.shtml $LOCALDOC/mondorescue-howto.sgml $LOCALDOC/*.8; do 65 47 66 cd $LOCALDOC 48 67 make -f Makefile.howto … … 55 74 perl -pi -e 's~<A HREF[=./A-z0-9"]*/man1/[^<]*>([A-z0-9]*)</A>~$1~g' $LOCALDIR/docs/*.8.html 56 75 perl -pi -e 's~/index.html~/index.shtml~' $LOCALDIR/docs/*.8.html 57 #58 # Version handling59 #60 perl -pi -e "s~VVV-rRRR~${VER}-r${REVISION}~g" $LOCALDIR/head.shtml61 62 76 find $LOCALDIR -type d | xargs chmod 755 63 77 find $LOCALDIR -type f | xargs chmod 644 78 64 79 cd $LOCALDIR 80 # 81 # Some links for the Web site 82 # 83 ln -sf /var/www/html/mediawiki . 84 ln -sf /var/www/html/admin . 85 65 86 if [ _"$1" == _"" ]; then 66 87 exit 0 -
branches/stable/tools/mkcommon
r401 r402 34 34 svn export ${VER}/mindi mindi-${MINDI_VER} 35 35 cp -a /tmp/mondorescue-svn.log mindi-${MINDI_VER}/svn.log 36 cp -a ${VER}/documentation/mindi.8 mindi-${MINDI_VER} 37 rm -rf documentation-${MONDO_VER} 38 svn export ${VER}/documentation documentation-${MONDO_VER} 39 cd documentation-${MONDO_VER} 40 $TOOLHOME/expandver mindi*8 41 make -f Makefile.man install-mindi INSTALLDIR=../mindi-${MINDI_VER} 42 cd .. 36 43 echo "$REVISION" > mindi-${MINDI_VER}/REVISION 37 44 rm -f mindi-${MINDI_VER}/rootfs/sbin/parted2fdisk-ia64 … … 48 55 svn export ${VER}/mondo mondo-${MONDO_VER} 49 56 cp -a /tmp/mondorescue-svn.log mondo-${MONDO_VER}/svn.log 57 mkdir -p mondo-${MONDO_VER}/docs/man 58 cp -a ${VER}/documentation/mondo*.8 mondo-${MONDO_VER}/docs/man 50 59 echo "$REVISION" > mondo-${MONDO_VER}/REVISION 51 60 rm -rf documentation-${MONDO_VER} 52 61 svn export ${VER}/documentation documentation-${MONDO_VER} 53 62 cd documentation-${MONDO_VER} 54 make -f Makefile.howto install INSTALLDIR=../mondo-${MONDO_VER}/mondo/docs/en 55 make -f Makefile.man install-mindi INSTALLDIR=../mindi-${MINDI_VER} 63 $TOOLHOME/expandver mondorescue-howto.sgml mondo*8 64 make -f Makefile.howto install INSTALLDIR=../mondo-${MONDO_VER}/docs/en 65 if [ $? != 0 ]; then 66 exit -1 67 fi 56 68 make -f Makefile.man install-mondo INSTALLDIR=../mondo-${MONDO_VER}/docs/man 57 69 if [ $? != 0 ]; then -
branches/stable/tools/mkdeliv
r399 r402 7 7 8 8 # BerliOS FTP/SSH setup 9 BERLIOSAC=bruno@ftp.mondorescue.org9 ACCOUNT=bruno@ftp.mondorescue.org 10 10 DSTDIR=/ 11 11 FTPSERV="ftp.berlios.de" … … 46 46 srpms="$srpms ${TOPDIR}/SRPMS/mondo-${MONDO_VER}-${rev}${suf}.src.rpm" 47 47 fi 48 echo "Sources delivery to ${BERLIOSAC}:${DSTDIR}/src" 49 scp ${tgz} ${BERLIOSAC}:${DSTDIR}/src 50 ssh ${BERLIOSAC} "mkdir -p ${DSTDIR}/${ddir}/${dver}" 51 echo "Packages delivery to ${BERLIOSAC}:${DSTDIR}/${ddir}/${dver}" 52 scp ${rpms} ${BERLIOSAC}:${DSTDIR}/${ddir}/${dver} 53 scp ${srpms} ${BERLIOSAC}:${DSTDIR}/${ddir}/${dver} 48 echo "Sources delivery to ${ACCOUNT}:${DSTDIR}/src" 49 scp ${tgz} ${ACCOUNT}:${DSTDIR}/src 50 51 echo "Packages delivery to ${ACCOUNT}:${DSTDIR}/${ddir}/${dver}" 52 ssh ${ACCOUNT} "mkdir -p ${DSTDIR}/${ddir}/${dver}" 53 scp ${rpms} ${srpms} ${ACCOUNT}:${DSTDIR}/${ddir}/${dver} 54 54 55 echo "Sources delivery to ${FTPSERV} ${FTPDIR}" 55 56 if [ "`which ncftpput`" != "" ]; then -
branches/stable/website/docs.shtml
r399 r402 33 33 <li>A <a href="/docs/mondoarchive.8.pdf" target="_blank">PDF</a></li> 34 34 <li>A <a href="/docs/mondoarchive.8.ps" target="_blank">PostScript</a></li> 35 <li>A <a href="/docs/mondoarchive.8.txt" target="_blank">Te st</a></li>35 <li>A <a href="/docs/mondoarchive.8.txt" target="_blank">Text</a></li> 36 36 </ul> 37 37 <li>mondorestore</li> … … 40 40 <li>A <a href="/docs/mondorestore.8.pdf" target="_blank">PDF</a></li> 41 41 <li>A <a href="/docs/mondorestore.8.ps" target="_blank">PostScript</a></li> 42 <li>A <a href="/docs/mondorestore.8.txt" target="_blank">Te st</a></li>42 <li>A <a href="/docs/mondorestore.8.txt" target="_blank">Text</a></li> 43 43 </ul> 44 44 <li>mindi</li> … … 47 47 <li>A <a href="/docs/mindi.8.pdf" target="_blank">PDF</a></li> 48 48 <li>A <a href="/docs/mindi.8.ps" target="_blank">PostScript</a></li> 49 <li>A <a href="/docs/mindi.8.txt" target="_blank">Te st</a></li>49 <li>A <a href="/docs/mindi.8.txt" target="_blank">Text</a></li> 50 50 </ul> 51 51 </ul> … … 57 57 <ul> 58 58 <li>A Mondo Rescue <a href="/docs/mondo-intro.pdf" target="_blank">introduction</a> (in French) made by Gallig Renaud. 59 <li>A Mondo Rescue <a href="/docs/mondo-presentation-v1.pdf target="_blank"">presentation</a> made by Bruno Cornec.60 <li>A Mondo Rescue hardware migration <a href="/docs/HOWTO-_Deploy_Linux_from_SCSI_to_SATA.pdf target="_blank"">guide</a> made by François-Xavier Horel.59 <li>A Mondo Rescue <a href="/docs/mondo-presentation-v1.pdf" target="_blank">presentation</a> made by Bruno Cornec. 60 <li>A Mondo Rescue hardware migration <a href="/docs/HOWTO-_Deploy_Linux_from_SCSI_to_SATA.pdf" target="_blank">guide</a> made by François-Xavier Horel. 61 61 62 62 <!--#include virtual="/bottom.shtml" --> -
branches/stable/website/top.shtml
r396 r402 15 15 </div> 16 16 <div id="topinfo"> 17 VVV-rRRR </div>17 VVV-rRRR - DDD </div> 18 18 </div> 19 19 <div id="body">
Note:
See TracChangeset
for help on using the changeset viewer.