diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-01-14 09:01:46 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-01-14 09:01:46 +0000 |
commit | 515e8180124c9c0229a974168c149afb9f674de7 (patch) | |
tree | c63d6231d69c059779f06f0d77f34cf98e789a15 /sys-apps/mondo-rescue | |
parent | bump, unstable (diff) | |
download | gentoo-2-515e8180124c9c0229a974168c149afb9f674de7.tar.gz gentoo-2-515e8180124c9c0229a974168c149afb9f674de7.tar.bz2 gentoo-2-515e8180124c9c0229a974168c149afb9f674de7.zip |
update, unstable
Diffstat (limited to 'sys-apps/mondo-rescue')
-rw-r--r-- | sys-apps/mondo-rescue/ChangeLog | 19 | ||||
-rw-r--r-- | sys-apps/mondo-rescue/files/digest-mondo-rescue-1.60 | 1 | ||||
-rw-r--r-- | sys-apps/mondo-rescue/mondo-rescue-1.60.ebuild | 60 |
3 files changed, 77 insertions, 3 deletions
diff --git a/sys-apps/mondo-rescue/ChangeLog b/sys-apps/mondo-rescue/ChangeLog index d2edf2546bdb..7d16e9626ddd 100644 --- a/sys-apps/mondo-rescue/ChangeLog +++ b/sys-apps/mondo-rescue/ChangeLog @@ -1,10 +1,23 @@ # ChangeLog for sys-apps/mondo-rescue # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mondo-rescue/ChangeLog,v 1.3 2002/10/22 19:03:35 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mondo-rescue/ChangeLog,v 1.4 2003/01/14 09:01:46 lostlogic Exp $ -*mondo-rescue-1.47 (Oct 22 2002) +*mondo-rescue-1.60 (14 Jan 2003) - 31 Jul 2002; Brandon Low <lostlogic@gentoo.org> mondo-rescue-1.47: + 14 Jan 2003; Brandon Low <lostlogic@gentoo.org> mondo-rescue-1.60: + + This thanks to François-Xavier LAMARE <flx-linuxnews@ifrance.com> + + Updated dependencies (buffer is no longer needed) + + Updated src_install() procedure for the installation process to work + the einstall() call didn't work (trying to install into /usr/local/) + I rewrote the installation process conforming to the original Makefile + and Gentoo's specifications. + +*mondo-rescue-1.47 (14 Jan 2002) + + 22 Oct 2002; Brandon Low <lostlogic@gentoo.org> mondo-rescue-1.47: Updated version thanks to Andreas Kotowicz <koto@mynetix.de> diff --git a/sys-apps/mondo-rescue/files/digest-mondo-rescue-1.60 b/sys-apps/mondo-rescue/files/digest-mondo-rescue-1.60 new file mode 100644 index 000000000000..f64a44acfec5 --- /dev/null +++ b/sys-apps/mondo-rescue/files/digest-mondo-rescue-1.60 @@ -0,0 +1 @@ +MD5 804d82479683fdd5d51ae08e26a9c59b mondo-1.60.tgz 1809384 diff --git a/sys-apps/mondo-rescue/mondo-rescue-1.60.ebuild b/sys-apps/mondo-rescue/mondo-rescue-1.60.ebuild new file mode 100644 index 000000000000..5c08f004ac57 --- /dev/null +++ b/sys-apps/mondo-rescue/mondo-rescue-1.60.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mondo-rescue/mondo-rescue-1.60.ebuild,v 1.1 2003/01/14 09:01:46 lostlogic Exp $ + +DESCRIPTION="a nice backup tool" +SRC_URI="http://www.microwerks.net/~hugo/download/stable/final/${PN/-rescue/}-${PV}.tgz" +HOMEPAGE="http://www.microwerks.net/~hugo/download.html" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND=">=app-arch/afio-2.4.7 + >=sys-apps/mindi-0.80 + >=sys-apps/bzip2-1.0.1 + >=app-cdr/cdrtools-1.10 + >=sys-libs/ncurses-5.2 + >=sys-libs/slang-1.4.4 + >=dev-libs/lzo-1.07 + >=app-arch/lzop-1.00 + >=dev-libs/newt-0.50 + >=sys-apps/syslinux-1.7" +S=${WORKDIR}/${PN/-rescue/}-${PV} + +src_compile() { + econf + emake || die "make failed" +} + +src_install() { + dodir /usr/share/mondo + dodir /usr/bin + + cp -f mondoarchive mondorestore mondo/mondo-makefilelist mondo/autorun mondo/restore-scripts.tgz ${D}/usr/share/mondo + + dosym /usr/share/mondo/mondoarchive /usr/bin/mondoarchive + dosym /usr/share/mondo/mondorestore /usr/bin/mondorestore + dosym /usr/share/mondo/mondo-makefilelist /usr/bin/mondo-makefilelist + + dodir /usr/share/doc/mondo-${PV} + + cp -pRdf mondo/docs/en/* ${D}/usr/share/doc/mondo-${PV} + + dodir /usr/share/man/man1 + cp -f mondoarchive.1 ${D}/usr/share/man/man1 + +} + +pkg_postinst() { + einfo + einfo "Installation notes:" + einfo "1) /boot must be mounted before running mondo" + einfo " (/etc/fstab does not automount it by default)" + einfo "2) make a symlink \"ln -s /boot/grub/menu.lst /etc/grub.conf\"" + einfo " as mondo wants to have a /etc/grub.conf file" + einfo "3) when doing a system backup be sure to use" + einfo " \"-E ${DISTDIR}\" because otherwise" + einfo " all source files will be included into the backup" + einfo +} |