diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2004-04-05 17:14:23 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2004-04-05 17:14:23 +0000 |
commit | 97862a0d99bc6aced664acc90a8438105f53ca27 (patch) | |
tree | a5c731b4d4d71fbfea20bf68b0851a6c134cb13e /media-gfx/xwgui2 | |
parent | Adding djbfft support for x86 (Manifest recommit) (diff) | |
download | gentoo-2-97862a0d99bc6aced664acc90a8438105f53ca27.tar.gz gentoo-2-97862a0d99bc6aced664acc90a8438105f53ca27.tar.bz2 gentoo-2-97862a0d99bc6aced664acc90a8438105f53ca27.zip |
Patched the ebuild to patch the source to fix a known XForms bug where input fields have to be at least 23 pixels in order to obtain any visible text from them.
Diffstat (limited to 'media-gfx/xwgui2')
-rw-r--r-- | media-gfx/xwgui2/xwgui2-2.08.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/media-gfx/xwgui2/xwgui2-2.08.ebuild b/media-gfx/xwgui2/xwgui2-2.08.ebuild index d63dca3bbd77..1cfc5a1d0d91 100644 --- a/media-gfx/xwgui2/xwgui2-2.08.ebuild +++ b/media-gfx/xwgui2/xwgui2-2.08.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/xwgui2/xwgui2-2.08.ebuild,v 1.1 2003/10/29 23:45:17 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xwgui2/xwgui2-2.08.ebuild,v 1.2 2004/04/05 17:14:23 plasmaroo Exp $ -DESCRIPTION="xwGUI2 is an image and photo layout software for printing" +DESCRIPTION="xwGUI2 is an image and photo layout application aimed for printing" HOMEPAGE="http://xwgui.automatix.de/" SRC_URI="http://xwgui.automatix.de/daten/xwgui-${PV}.tar.gz" LICENSE="GPL-2" @@ -25,6 +25,10 @@ src_compile() { patch -p0 -s < ${FILESDIR}/xwgui2-${PV}-makefilediff.patch || die + # This sorts out "invisible" input boxes due to a known + # XForms bug... + sed -e 's/20,xwGR/23,xwGR/' -i xwGUI/*.c || die + cd xwGUI || die emake || die echo @@ -41,7 +45,6 @@ src_compile() { src_install() { einstall || die - if [ -x /usr/bin/gimp-1.2 ]; then cd xwprint2 || die |