diff options
author | Fabian Groffen <grobian@gentoo.org> | 2006-06-19 19:50:08 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2006-06-19 19:50:08 +0000 |
commit | d425a1b08d874f3ba631fbe12717ba654dae1b31 (patch) | |
tree | 160b0483312767c8dd50a2776d3ee0a2e08c2623 /app-backup/boxbackup/boxbackup-0.10.ebuild | |
parent | Added ~ppc64; bug #137033 (diff) | |
download | gentoo-2-d425a1b08d874f3ba631fbe12717ba654dae1b31.tar.gz gentoo-2-d425a1b08d874f3ba631fbe12717ba654dae1b31.tar.bz2 gentoo-2-d425a1b08d874f3ba631fbe12717ba654dae1b31.zip |
Adding a patch for compiling with GCC4.1, many thanks to Stuart Hickinbottom <stuart@hickinbottom.demon.co.uk> (bug #136300)
(Portage version: 2.1_rc2)
Diffstat (limited to 'app-backup/boxbackup/boxbackup-0.10.ebuild')
-rw-r--r-- | app-backup/boxbackup/boxbackup-0.10.ebuild | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/app-backup/boxbackup/boxbackup-0.10.ebuild b/app-backup/boxbackup/boxbackup-0.10.ebuild index 611cafc88b9a..2e2375945f92 100644 --- a/app-backup/boxbackup/boxbackup-0.10.ebuild +++ b/app-backup/boxbackup/boxbackup-0.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/boxbackup/boxbackup-0.10.ebuild,v 1.1 2006/03/05 13:16:02 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/boxbackup/boxbackup-0.10.ebuild,v 1.2 2006/06/19 19:50:08 grobian Exp $ inherit eutils @@ -14,7 +14,8 @@ IUSE="client-only" DEPEND="sys-libs/zlib sys-libs/db >=dev-libs/openssl-0.9.7 - >=dev-lang/perl-5.6" + >=dev-lang/perl-5.6 + >=sys-devel/autoconf-2.50" RDEPEND="${DEPEND} virtual/mta" @@ -22,9 +23,11 @@ src_unpack() { unpack ${A} epatch "${FILESDIR}/${P}"-gentoo.patch + epatch "${FILESDIR}/${P}"-gcc41-noll.patch } src_compile() { + ./bootstrap || die "bootstrap failed" econf || die "configure failed" make || die } @@ -58,12 +61,15 @@ pkg_preinst() { pkg_postinst() { while read line; do einfo "${line}"; done <<EOF -After configuring the boxbackup client and/or server, you can start -the boxbackup daemons using the init scripts /etc/init.d/bbackupd -and /etc/init.d/bbstored. +After configuring the Box Backup client and/or server, you can start +the daemon using the init scripts /etc/init.d/bbackupd and +/etc/init.d/bbstored. +The configuration files can be found in /etc/boxbackup + More information about configuring the client can be found at ${HOMEPAGE}client.html, and more information about configuring the server can be found at ${HOMEPAGE}server.html. EOF + echo } |