head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.42 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.40 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.38 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.36 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.34 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.32 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.30 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.28 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.26 pkgsrc-2008Q2-base:1.4 pkgsrc-2008Q1:1.4.0.24 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.22 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.20 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.4.0.18 pkgsrc-2007Q2-base:1.4 pkgsrc-2007Q1:1.4.0.16 pkgsrc-2007Q1-base:1.4 pkgsrc-2006Q4:1.4.0.14 pkgsrc-2006Q4-base:1.4 pkgsrc-2006Q3:1.4.0.12 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.4.0.10 pkgsrc-2006Q2-base:1.4 pkgsrc-2006Q1:1.4.0.8 pkgsrc-2006Q1-base:1.4 pkgsrc-2005Q4:1.4.0.6 pkgsrc-2005Q4-base:1.4 pkgsrc-2005Q3:1.4.0.4 pkgsrc-2005Q3-base:1.4 pkgsrc-2005Q2:1.4.0.2 pkgsrc-2005Q2-base:1.4 pkgsrc-2005Q1:1.3.0.20 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.18 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.3.0.16 pkgsrc-2004Q3-base:1.3 pkgsrc-2004Q2:1.3.0.14 pkgsrc-2004Q2-base:1.3 pkgsrc-2004Q1:1.3.0.12 pkgsrc-2004Q1-base:1.3 pkgsrc-2003Q4:1.3.0.10 pkgsrc-2003Q4-base:1.3 netbsd-1-6-1:1.3.0.6 netbsd-1-6-1-base:1.3 netbsd-1-6:1.3.0.8 netbsd-1-6-RELEASE-base:1.3 pkgviews:1.3.0.4 pkgviews-base:1.3 buildlink2:1.3.0.2 buildlink2-base:1.3 netbsd-1-5-PATCH003:1.3 netbsd-1-5-PATCH001:1.3 netbsd-1-5-RELEASE:1.1.1.1 netbsd-1-4-PATCH003:1.1.1.1 netbsd-1-4-PATCH002:1.1.1.1 comdex-fall-1999:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.4 date 2005.05.18.22.39.01; author wiz; state dead; branches; next 1.3; 1.3 date 2001.04.02.20.16.42; author wrstuden; state Exp; branches; next 1.2; 1.2 date 2000.12.15.03.13.06; author garbled; state dead; branches; next 1.1; 1.1 date 99.07.21.22.56.35; author garbled; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 99.07.21.22.56.35; author garbled; state Exp; branches; next ; desc @@ 1.4 log @Remove packages that have been broken on 2.0/i386 for over 9 months now; neither maintainer nor anyone else stepped up to fix them. Predicted on tech-pkg and in private mail to maintainers; no comments. @ text @$NetBSD: patch-ak,v 1.3 2001/04/02 20:16:42 wrstuden Exp $ --- Sources/Core/SurfaceProviders/provider_targa.cpp.orig Sat Mar 24 10:39:52 2001 +++ Sources/Core/SurfaceProviders/provider_targa.cpp Sat Mar 24 10:46:53 2001 @@@@ -151,8 +151,7 @@@@ // read or skip the colormap (rgb-palette) if (colormaptype == 1) { - map_length = *((unsigned short *) &file[5]); - SWAP_IF_BIG(map_length); + map_length = file[5] + 256 * file[6]; unsigned char map_size = file[7]>>3; if (!read_colormap) @@@@ -194,13 +193,11 @@@@ } // read pitch, height and bits-pr-pixel - pitch = *((unsigned short *) &file[12]); - SWAP_IF_BIG(pitch); + pitch = file[12] + 256 * file[13]; bounding_left = pitch; bounding_right = 0; - height = *((unsigned short *) &file[14]); - SWAP_IF_BIG(height); + height = file[14] + 256 * file[15]; bounding_top = height; bounding_bottom = 0; @@@@ -456,8 +453,7 @@@@ } else { - entry = *((unsigned short *) &file[pos]); - SWAP_IF_BIG(entry); + entry = file[pos] + 256 * file[pos + 1]; pos += 2; } @ 1.3 log @Fix big-endian support. Problem was that the targa code would load a little-endian short into an int, then byteswap the int. That's essentially le32toh() when it should be le16toh(). This ended up in making numbers 0x10000 times too big. Also got rid of a potential unaligned-access. @ text @d1 1 a1 1 $NetBSD:$ @ 1.2 log @Update this package to Clanlib-0.4.4.. too many changes to list. @ text @d1 11 a11 6 $NetBSD: patch-ak,v 1.1 1999/07/21 22:56:35 garbled Exp $ --- Layer1/Sound/ClanSound/ClanSound/Makefile.options.orig Thu Jul 8 19:24:02 1999 +++ Layer1/Sound/ClanSound/ClanSound/Makefile.options Thu Jul 8 19:24:16 1999 @@@@ -5,7 +5,7 @@@@ # # d13 26 a38 3 -COMP_OPTIONS = -Wall -O2 -pedantic +COMP_OPTIONS = -Wall -O2 -pedantic -fPIC LINK_OPTIONS = a39 1 %.o : %.cpp @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ @ 1.1.1.1 log @Import of clanlib 0.1.15. Known to work on ELF.. a.out may need some work. The ClanLib Game SDK. @ text @@