Changeset 1471 in MondoRescue for branches/2.2.4


Ignore:
Timestamp:
May 31, 2007, 2:25:31 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • More Ubuntu support for build process
  • QEMU doc updated
Location:
branches/2.2.4/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.4/tools/qemu-vm.txt

    r1013 r1471  
    77# RPM based : urpmi, yum install, yast2
    88# Mandriva
    9 urpmi neon newt-devel slang-devel glibc-static-devel autoconf automake libtool gcc rpm-build wget gvim/vim-X11 gcc-c++ docbook-utils-pdf ImageMagick man patch mindi mondo
     9urpmi neon newt-devel slang-devel glibc-static-devel autoconf automake libtool gcc rpm-build wget gcc-c++ docbook-utils-pdf ImageMagick man patch mindi mondo mkisofs cdrecord
    1010
    1111#Fedora
    12 yum install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget gvim/vim-X11 gcc-c++ docbook-utils-pdf ImageMagick man patch
     12yum install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget vim gcc-c++ docbook-utils-pdf ImageMagick man patch cdrecord mkisofs
    1313
    1414
    1515# gentoo
    1616#Cf: http://wiki.xensource.com/xenwiki/QEMUGentoo
    17 emerge neon newt slang autoconf automake subversion libtool gcc wget vim man groff lynx grub afio buffer mindi mondo-rescue
     17emerge neon newt slang autoconf automake subversion libtool gcc wget vim man groff lynx grub afio buffer mindi mondo-rescue cdrecord mkisofs
    1818
    1919# Slackware
    2020# Cf: http://www.linuxpackages.net/howto.php?page=package&title=Package+Howto
     21#
     22# Ubuntu
     23apt-get install autoconf automake libtool g++ wget patch mondo groff imagemagick docbook-utils docbook2x docbook-to-man openssh-server dpkg-dev debian-builder dh-make
    2124
    2225#Changing CD during install:
     
    8285chown bruno /etc/make.conf
    8386bruno in portage group
     87
     88# for FreeBSD
     89ln -sf /usr/local/bin/bash /bin/bash
     90
     91# For Slackware
     92take on ftp pkg src + build
     93configure sudo :
     94bruno = NOPASSWD: /sbin/makepkg
  • branches/2.2.4/tools/svn2build

    r1273 r1471  
    100100            m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/Makefile > $dest/distributions/${ddir}-$dver/Makefile
    101101        elif [ "$dtype" = "deb" ]; then
    102             cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver
    103             m4 $MONDOTMP/mondorescue.mc $dest/distributions/$ddir/rules > $dest/distributions/${ddir}-$dver/rules
     102            if [ -f $dest/distributions/$ddir/rules ]; then
     103                cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver
     104                inc=$dest/distributions/$ddir/rules
     105            elif [ -f $dest/distributions/$dfam/rules ]; then
     106                cp -a $dest/distributions/$dfam/* $dest/distributions/${ddir}-$dver
     107                inc=$dest/distributions/$dfam/rules
     108            else
     109                echo "Unable to build the .deb build files for this distro. Please report to authors"
     110                exit -1
     111            fi
     112            m4 $MONDOTMP/mondorescue.mc $inc > $dest/distributions/${ddir}-$dver/rules
    104113            $TOOLHOME/mkchangelog.pl $dtype $p $dest/distributions/${ddir}-$dver/changelog
    105114            if [ $? -ne 0 ]; then
Note: See TracChangeset for help on using the changeset viewer.