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 | 62109c70ab4aa0fc0bb779c36252416528781c69 (patch) | |
tree | 7fd31b67fc9a5d22ad9816eabcf39141965cb062 /media-gfx | |
parent | Adding djbfft support for x86 (diff) | |
download | historical-62109c70ab4aa0fc0bb779c36252416528781c69.tar.gz historical-62109c70ab4aa0fc0bb779c36252416528781c69.tar.bz2 historical-62109c70ab4aa0fc0bb779c36252416528781c69.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')
-rw-r--r-- | media-gfx/xwgui2/Manifest | 2 | ||||
-rw-r--r-- | media-gfx/xwgui2/xwgui2-2.08.ebuild | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/media-gfx/xwgui2/Manifest b/media-gfx/xwgui2/Manifest index 9e7d732b2d5a..bd4687e6c388 100644 --- a/media-gfx/xwgui2/Manifest +++ b/media-gfx/xwgui2/Manifest @@ -1,4 +1,4 @@ MD5 309f4ac46a44d87e8263953458294086 ChangeLog 362 -MD5 e24e5b9857f7b9a9cd18758ee3f3c731 xwgui2-2.08.ebuild 1142 +MD5 747f19b1dac6e97871d9f92d963eba90 xwgui2-2.08.ebuild 1274 MD5 52fe5f4a1d13e28251612ad711a68354 files/xwgui2-2.08-makefilediff.patch 866 MD5 3c20b8804ee3f88f145aafa599c07b43 files/digest-xwgui2-2.08 62 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 |