diff options
author | taca <taca@pkgsrc.org> | 2003-10-06 16:17:02 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2003-10-06 16:17:02 +0000 |
commit | 80e16d5754c1f286967da71db110e3065c0600f3 (patch) | |
tree | 99e3c4a881af01c6b62e75c9641370a096ab8795 /graphics/ruby-opengl | |
parent | 9151d229407a817703cb55edb4f038b629a4d381 (diff) | |
download | pkgsrc-80e16d5754c1f286967da71db110e3065c0600f3.tar.gz |
ruby-opengl to 0.32.3.
Fix broken package with updating.
2003-08-17 <yoshi@giganet.net>
* fixed for mswin32 (thanks patch: nobu.nakada)
* function call which was being called from the NUM2INT() argument is deleted
* change allocate_buffer_with_string()
2003-08-04 <yoshi@giganet.net>
* fixed bug teapot.rb, extconf.rb (thanks patch: Stef Telford)
* fixed bug glu.c (thanks patch: Ashish Myles)
* fixed for gcc 3.3.1 (thanks patch: Haukur Hreinsson)
* fixed for cygwin environment
* release OpenGL module 0.32c
Diffstat (limited to 'graphics/ruby-opengl')
-rw-r--r-- | graphics/ruby-opengl/Makefile | 10 | ||||
-rw-r--r-- | graphics/ruby-opengl/distinfo | 8 | ||||
-rw-r--r-- | graphics/ruby-opengl/patches/patch-aa | 14 |
3 files changed, 15 insertions, 17 deletions
diff --git a/graphics/ruby-opengl/Makefile b/graphics/ruby-opengl/Makefile index f16eb2e5ed2..bdbd9176d5f 100644 --- a/graphics/ruby-opengl/Makefile +++ b/graphics/ruby-opengl/Makefile @@ -1,19 +1,17 @@ -# $NetBSD: Makefile,v 1.8 2003/07/17 21:42:42 grant Exp $ +# $NetBSD: Makefile,v 1.9 2003/10/06 16:17:02 taca Exp $ # FreeBSD: ports/graphics/ruby-opengl/Makefile,v 1.4 2000/09/26 08:01:58 knu Exp DISTNAME= rbogl-${VERSION} -PKGNAME= ${RUBY_PKGNAMEPREFIX}opengl-${VERSION:S/b$/.2/} -PKGREVISION= 2 -WRKSRC= ${WRKDIR}/opengl +PKGNAME= ${RUBY_PKGNAMEPREFIX}opengl-${VERSION:S/c$/.3/} +WRKSRC= ${WRKDIR}/opengl-${VERSION} CATEGORIES= graphics MASTER_SITES= http://www2.giganet.net/~yoshi/ -EXTRACT_SUFX= .tgz MAINTAINER= taca@NetBSD.org HOMEPAGE= http://www2.giganet.net/~yoshi/ COMMENT= OpenGL/GLU/GLUT interface modules for Ruby -VERSION= 0.32b +VERSION= 0.32c DIST_SUBDIR= ruby USE_BUILDLINK2= yes USE_X11= yes diff --git a/graphics/ruby-opengl/distinfo b/graphics/ruby-opengl/distinfo index ce9e4c5fcd6..6626892074d 100644 --- a/graphics/ruby-opengl/distinfo +++ b/graphics/ruby-opengl/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2002/01/20 03:54:56 taca Exp $ +$NetBSD: distinfo,v 1.3 2003/10/06 16:17:02 taca Exp $ -SHA1 (ruby/rbogl-0.32b.tgz) = 194e8bba8c7e607083b005137b08b7664f446c32 -Size (ruby/rbogl-0.32b.tgz) = 70340 bytes -SHA1 (patch-aa) = a5209b3ef507731aca024239910e6ba97c4dea54 +SHA1 (ruby/rbogl-0.32c.tar.gz) = 36d257d8c4c787b1bfc4191b50937998d8cadc52 +Size (ruby/rbogl-0.32c.tar.gz) = 81828 bytes +SHA1 (patch-aa) = a1239bd409f4a39075330ab91b4f1e5d3a3e3e7a diff --git a/graphics/ruby-opengl/patches/patch-aa b/graphics/ruby-opengl/patches/patch-aa index 4d62817a04b..d88bfbbf262 100644 --- a/graphics/ruby-opengl/patches/patch-aa +++ b/graphics/ruby-opengl/patches/patch-aa @@ -1,15 +1,15 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/06/30 15:09:33 taca Exp $ +$NetBSD: patch-aa,v 1.2 2003/10/06 16:17:02 taca Exp $ ---- extconf.rb.orig Mon Apr 30 14:33:09 2001 +--- extconf.rb.orig 2003-08-17 12:04:32.000000000 +0900 +++ extconf.rb -@@ -26,8 +26,10 @@ +@@ -32,8 +32,10 @@ elsif (/mswin32/ =~ PLATFORM) glut_libname = "glut32" else - $CFLAGS += " -I." + $CPPFLAGS += " -I." + $LDFLAGS=ENV['LDFLAGS'] - dir_config("x11", "/usr/X11R6") + idir, ldir = dir_config("x11", "/usr/X11R6") + dir_config("ruby") - $libs = append_library($libs, "Xmu") - $libs = append_library($libs, "X11") + have_library("Xi", "XAllowDeviceEvents") + have_library("Xext", "XMITMiscGetBugMode") |