diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-12-22 06:13:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-12-22 06:13:57 +0000 |
commit | db30a5f9e3def70382df09ca51deb1ff13147990 (patch) | |
tree | 233f1dfe7c5b85cce61c695aa5cf859ccc199732 /sys-fs/autorun/autorun-3.17.ebuild | |
parent | Version bump #251651 by Lars (Polynomial-C). (diff) | |
download | gentoo-2-db30a5f9e3def70382df09ca51deb1ff13147990.tar.gz gentoo-2-db30a5f9e3def70382df09ca51deb1ff13147990.tar.bz2 gentoo-2-db30a5f9e3def70382df09ca51deb1ff13147990.zip |
Fix building with gcc-4.3 #251684 by Diego E. Pettenò.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.8 x86_64)
Diffstat (limited to 'sys-fs/autorun/autorun-3.17.ebuild')
-rw-r--r-- | sys-fs/autorun/autorun-3.17.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys-fs/autorun/autorun-3.17.ebuild b/sys-fs/autorun/autorun-3.17.ebuild index c49e99208b77..c94a6232fe3f 100644 --- a/sys-fs/autorun/autorun-3.17.ebuild +++ b/sys-fs/autorun/autorun-3.17.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/sys-fs/autorun/autorun-3.17.ebuild,v 1.2 2006/09/05 07:11:02 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/autorun/autorun-3.17.ebuild,v 1.3 2008/12/22 06:13:57 vapier Exp $ inherit kde-functions eutils @@ -19,7 +19,13 @@ DEPEND="app-text/xmlto =app-text/docbook-xml-dtd-4.1.2*" RDEPEND="" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-headers.patch #251684 +} + src_install() { - make install DESTDIR="${D}" || die + emake install DESTDIR="${D}" || die dodoc AUTHORS ChangeLog NEWS README } |