| 1 | # Copyright 1999-2004 Gentoo Foundation |
|---|
| 2 | # Distributed under the terms of the GNU General Public License v2 |
|---|
| 3 | # $Header: $ |
|---|
| 4 | |
|---|
| 5 | # $Id$ |
|---|
| 6 | |
|---|
| 7 | inherit libtool |
|---|
| 8 | |
|---|
| 9 | DESCRIPTION="The premier GPL disaster recovery solution." |
|---|
| 10 | HOMEPAGE="http://www.mondorescue.org" |
|---|
| 11 | SRC_URI="ftp://ftp.mondorescue.org/src/${PN/-rescue/}-${PV}.tar.gz" |
|---|
| 12 | |
|---|
| 13 | LICENSE="GPL-2" |
|---|
| 14 | SLOT="0" |
|---|
| 15 | KEYWORDS="~x86 ~ia64 ~amd64 -*" |
|---|
| 16 | IUSE="" |
|---|
| 17 | |
|---|
| 18 | DEPEND="virtual/libc |
|---|
| 19 | >=sys-libs/slang-1.4.1 |
|---|
| 20 | >=dev-libs/newt-0.50" |
|---|
| 21 | RDEPEND="app-arch/afio |
|---|
| 22 | sys-block/buffer |
|---|
| 23 | sys-devel/binutils |
|---|
| 24 | >=app-arch/bzip2-0.9 |
|---|
| 25 | virtual/cdrtools |
|---|
| 26 | >=sys-apps/mindi-2.0.0 |
|---|
| 27 | >=dev-libs/newt-0.50 |
|---|
| 28 | >=sys-libs/slang-1.4.1 |
|---|
| 29 | sys-apps/parted |
|---|
| 30 | >=sys-boot/syslinux-1.52" |
|---|
| 31 | |
|---|
| 32 | S="${WORKDIR}/${PN/-rescue/}-${PV}" |
|---|
| 33 | |
|---|
| 34 | src_unpack() { |
|---|
| 35 | unpack ${A} |
|---|
| 36 | cd "${S}" |
|---|
| 37 | chmod 750 configure |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | src_compile() { |
|---|
| 41 | elibtoolize |
|---|
| 42 | econf || die "Configuration failed" |
|---|
| 43 | emake VERSION=PBVER || die "Make failed" |
|---|
| 44 | } |
|---|
| 45 | |
|---|
| 46 | src_install() { |
|---|
| 47 | make install DESTDIR="${D}" || die "make install failed" |
|---|
| 48 | mkdir -p "${D}/var/cache/mondo" |
|---|
| 49 | exeinto /usr/share/mondo |
|---|
| 50 | doexe mondo/autorun |
|---|
| 51 | } |
|---|
| 52 | |
|---|
| 53 | pkg_postinst() { |
|---|
| 54 | einfo "${P} was successfully installed." |
|---|
| 55 | einfo "Please read the associated docs for help." |
|---|
| 56 | einfo "Or visit the website @ ${HOMEPAGE}" |
|---|
| 57 | echo |
|---|
| 58 | ewarn "This package is a new version after a long gap." |
|---|
| 59 | ewarn "Please report bugs to http://bugs.gentoo.org/" |
|---|
| 60 | ewarn "However, please do an advanced query to search for bugs" |
|---|
| 61 | ewarn "before reporting. This will keep down on duplicates." |
|---|
| 62 | echo |
|---|
| 63 | einfo "Prior to running mondo, ensure /boot is mounted." |
|---|
| 64 | ewarn "Grub users need to have a symlink like this:" |
|---|
| 65 | ewarn "ln -s /boot/grub/menu.lst /etc/grub.conf" |
|---|
| 66 | einfo "Unless you want to have mondo backup your distfiles," |
|---|
| 67 | einfo "append \"-E ${DISTDIR}\" to your mondoarchive command." |
|---|
| 68 | echo |
|---|
| 69 | } |
|---|