diff options
author | 2008-06-15 10:13:37 +0000 | |
---|---|---|
committer | 2008-06-15 10:13:37 +0000 | |
commit | ccc64824a7580dd281c7a5cb03996388f1b107ce (patch) | |
tree | c809e7ca33ba8b09ab635752e40f46f81fb3c494 /dev-libs/tntnet/tntnet-1.6.3.ebuild | |
parent | No hardware to test, so back to ~alpha for stable version. (diff) | |
download | historical-ccc64824a7580dd281c7a5cb03996388f1b107ce.tar.gz historical-ccc64824a7580dd281c7a5cb03996388f1b107ce.tar.bz2 historical-ccc64824a7580dd281c7a5cb03996388f1b107ce.zip |
Fix building with gcc-4.3, Bug #226375.
Package-Manager: portage-2.1.5.5
Diffstat (limited to 'dev-libs/tntnet/tntnet-1.6.3.ebuild')
-rw-r--r-- | dev-libs/tntnet/tntnet-1.6.3.ebuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dev-libs/tntnet/tntnet-1.6.3.ebuild b/dev-libs/tntnet/tntnet-1.6.3.ebuild index 796d4927efeb..885b81839b1d 100644 --- a/dev-libs/tntnet/tntnet-1.6.3.ebuild +++ b/dev-libs/tntnet/tntnet-1.6.3.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/tntnet/tntnet-1.6.3.ebuild,v 1.1 2008/06/06 18:39:55 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/tntnet/tntnet-1.6.3.ebuild,v 1.2 2008/06/15 10:13:37 zzam Exp $ + +inherit eutils DESCRIPTION="A modular, multithreaded webapplicationserver extensible with C++." HOMEPAGE="http://www.tntnet.org/index.hms" @@ -20,6 +22,13 @@ RDEPEND="dev-libs/cxxtools DEPEND="${RDEPEND} app-arch/zip" +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-gcc43.patch" +} + src_compile() { local myconf="" if use ssl; then |