diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-04-21 17:44:10 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-04-21 17:44:10 +0000 |
commit | 745efc4ad21e44fb6efac4d97453a2180baaaa27 (patch) | |
tree | d1d2a5c264349662f09b9ef04125eefbed987bb0 /kde-misc/kaptain/kaptain-0.72.ebuild | |
parent | Fix up metadata.xml. If there's no maintainer for the package, the metadata a... (diff) | |
download | gentoo-2-745efc4ad21e44fb6efac4d97453a2180baaaa27.tar.gz gentoo-2-745efc4ad21e44fb6efac4d97453a2180baaaa27.tar.bz2 gentoo-2-745efc4ad21e44fb6efac4d97453a2180baaaa27.zip |
Added a patch for gcc 4.3 compatibility as kindly provided by Peter Alfredsen on bug 218690.
(Portage version: 2.1.5_rc4)
Diffstat (limited to 'kde-misc/kaptain/kaptain-0.72.ebuild')
-rw-r--r-- | kde-misc/kaptain/kaptain-0.72.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/kde-misc/kaptain/kaptain-0.72.ebuild b/kde-misc/kaptain/kaptain-0.72.ebuild index 257a9fd8d196..e25bda37d380 100644 --- a/kde-misc/kaptain/kaptain-0.72.ebuild +++ b/kde-misc/kaptain/kaptain-0.72.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kaptain/kaptain-0.72.ebuild,v 1.5 2006/10/22 01:38:20 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kaptain/kaptain-0.72.ebuild,v 1.6 2008/04/21 17:44:09 philantrop Exp $ inherit kde-functions eutils @@ -20,9 +20,12 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-ggc4.patch + + # Fixes bug 218690. + epatch "${FILESDIR}"/${P}-gcc43.patch } src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS ChangeLog README TODO + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README TODO || die "installing docs failed." } |