diff options
author | Jonathan Smith <smithj@gentoo.org> | 2005-07-25 23:20:40 +0000 |
---|---|---|
committer | Jonathan Smith <smithj@gentoo.org> | 2005-07-25 23:20:40 +0000 |
commit | c444a89388500c5f5ff6cddbd930fc45fab59657 (patch) | |
tree | 39fe38cd3ec459cba155dd4439b6f77f70052560 /x11-misc/skippy | |
parent | require cegui-0.3 or newer #100270 by Mathias Weber (diff) | |
download | gentoo-2-c444a89388500c5f5ff6cddbd930fc45fab59657.tar.gz gentoo-2-c444a89388500c5f5ff6cddbd930fc45fab59657.tar.bz2 gentoo-2-c444a89388500c5f5ff6cddbd930fc45fab59657.zip |
#99426: fixed hardcoded pointer size
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'x11-misc/skippy')
-rw-r--r-- | x11-misc/skippy/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/skippy/Manifest | 14 | ||||
-rw-r--r-- | x11-misc/skippy/files/skippy-pointer-size.patch | 12 | ||||
-rw-r--r-- | x11-misc/skippy/skippy-0.5.0.ebuild | 12 |
4 files changed, 28 insertions, 18 deletions
diff --git a/x11-misc/skippy/ChangeLog b/x11-misc/skippy/ChangeLog index b0ee0df39803..adcaae994780 100644 --- a/x11-misc/skippy/ChangeLog +++ b/x11-misc/skippy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/skippy -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/ChangeLog,v 1.6 2004/08/14 13:51:50 swegener Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/ChangeLog,v 1.7 2005/07/25 23:20:40 smithj Exp $ + + 25 Jul 2005; Jonathan Smith <smithj@gentoo.org> + +files/skippy-pointer-size.patch, skippy-0.5.0.ebuild: + #99426: fixed hardcoded pointer size 14 Aug 2004; Sven Wegener <swegener@gentoo.org> skippy-0.5.0.ebuild: Fixed CVS Header. diff --git a/x11-misc/skippy/Manifest b/x11-misc/skippy/Manifest index af986936a484..e69de29bb2d1 100644 --- a/x11-misc/skippy/Manifest +++ b/x11-misc/skippy/Manifest @@ -1,14 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 014ea34e9f4532e859f0dda3666dbf83 ChangeLog 736 -MD5 cdb11033a3fa6525334cecf938961c07 metadata.xml 166 -MD5 2dcabd5dcc4d4bf44ccc35fad68df818 skippy-0.5.0.ebuild 957 -MD5 507b49a9e7e7f25470f8d9ec8127362c files/digest-skippy-0.5.0 64 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.4 (GNU/Linux) - -iD8DBQFBHhlFI1lqEGTUzyQRAng1AJ92a+1siUWlroKu/+60EivyJz5sTQCgg8ZV -oCGHTw6SgdS6vnMnNnzWmMY= -=gbtZ ------END PGP SIGNATURE----- diff --git a/x11-misc/skippy/files/skippy-pointer-size.patch b/x11-misc/skippy/files/skippy-pointer-size.patch new file mode 100644 index 000000000000..deaa4f181c02 --- /dev/null +++ b/x11-misc/skippy/files/skippy-pointer-size.patch @@ -0,0 +1,12 @@ +diff -ur skippy-0.5.0/wm.c skippy-0.5.0.n/wm.c +--- skippy-0.5.0/wm.c 2005-07-20 01:27:23.000000000 +0200 ++++ skippy-0.5.0.n/wm.c 2005-07-20 01:28:48.000000000 +0200 +@@ -258,7 +258,7 @@ + return 0; + + for(i = 0; i < items_read; i++) +- l = dlist_add(l, (void*)((CARD32*)data)[i]); ++ l = dlist_add(l, (void*)((void**)data)[i]); + + XFree(data); + diff --git a/x11-misc/skippy/skippy-0.5.0.ebuild b/x11-misc/skippy/skippy-0.5.0.ebuild index 98f322bc06fd..e8e229174603 100644 --- a/x11-misc/skippy/skippy-0.5.0.ebuild +++ b/x11-misc/skippy/skippy-0.5.0.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild,v 1.6 2004/08/14 13:51:50 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild,v 1.7 2005/07/25 23:20:40 smithj Exp $ + +inherit eutils IUSE="" @@ -18,6 +20,12 @@ RDEPEND="virtual/x11 DEPEND="${RDEPEND} >=media-libs/imlib2-1.1.0" +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-pointer-size.patch +} + src_compile() { emake || die "emake failed" } |