From 59900f00d978f786671a8226730d76fe264f8ece Mon Sep 17 00:00:00 2001 From: Karl Trygve Kalleberg Date: Wed, 28 Aug 2002 12:26:29 +0000 Subject: Fixes #7095 --- app-misc/joy2key/ChangeLog | 13 ++++++------- app-misc/joy2key/joy2key-1.6.ebuild | 5 +++-- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'app-misc/joy2key') diff --git a/app-misc/joy2key/ChangeLog b/app-misc/joy2key/ChangeLog index 5d2ffd651967..fe9446109345 100644 --- a/app-misc/joy2key/ChangeLog +++ b/app-misc/joy2key/ChangeLog @@ -1,13 +1,12 @@ # ChangeLog for app-misc/joy2key # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/joy2key/ChangeLog,v 1.1 2002/02/01 21:53:08 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/joy2key/ChangeLog,v 1.2 2002/08/28 12:26:29 karltk Exp $ *joy2key-1.6 (1 Feb 2002) - 1 Feb 2002; G.Bevin ChangeLog : + 28 Aug 2002; Karl Trygve Kalleberg joy2key-1.6.ebuild : + Disabled any -O? optimisations in CFLAGS, as joy2key will + reportedly crash if optimised. Fixes #7095. - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. + 1 Feb 2002; G.Bevin ChangeLog : + Added initial ChangeLog. diff --git a/app-misc/joy2key/joy2key-1.6.ebuild b/app-misc/joy2key/joy2key-1.6.ebuild index 4e029ba6363e..10d5f58660e2 100644 --- a/app-misc/joy2key/joy2key-1.6.ebuild +++ b/app-misc/joy2key/joy2key-1.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-misc/joy2key/joy2key-1.6.ebuild,v 1.5 2002/07/25 17:20:01 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/joy2key/joy2key-1.6.ebuild,v 1.6 2002/08/28 12:26:29 karltk Exp $ S=${WORKDIR}/${P} DESCRIPTION="An application that translates joystick events to keyboard events" @@ -17,7 +17,8 @@ src_compile() { local myconf use X || myconf="--disable-X" - ./configure ${myconf} || die + CFLAGS=${CFLAGS/-O?/} + econf ${myconf} || die make || die } -- cgit v1.2.3-65-gdbad