diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-08-28 12:26:29 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-08-28 12:26:29 +0000 |
commit | 59900f00d978f786671a8226730d76fe264f8ece (patch) | |
tree | 73479d1a99387f41f8103c5a8838e8b28e91c8f4 /app-misc | |
parent | unmasked setiathome and tkseti now that new baselayout exists (diff) | |
download | gentoo-2-59900f00d978f786671a8226730d76fe264f8ece.tar.gz gentoo-2-59900f00d978f786671a8226730d76fe264f8ece.tar.bz2 gentoo-2-59900f00d978f786671a8226730d76fe264f8ece.zip |
Fixes #7095
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/joy2key/ChangeLog | 13 | ||||
-rw-r--r-- | app-misc/joy2key/joy2key-1.6.ebuild | 5 |
2 files changed, 9 insertions, 9 deletions
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 <gbevin@gentoo.org> ChangeLog : + 28 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> 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 <gbevin@gentoo.org> 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 } |