summaryrefslogtreecommitdiff
path: root/x11-toolkits/ruby-qt2
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-01-18 16:52:47 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-01-18 16:52:47 +0000
commit6d30560f9221f4b4a6e4f593cd5501d646ec84a5 (patch)
treeaebb58ad53f08c3c925a653cdf747a017e11fe4f /x11-toolkits/ruby-qt2
parentUpgrade to 0.7 and sync with www/mozilla (diff)
Update to 0.11 and unbreak. Now it works fine. :)
The culprit was x11-toolkits/qt22's lack of qgl support, and the author has kindly separated the qgl module. At the same time, canvas, table, and xml modules have been separated too. I'll make them ports sometime in the not too distant future.
Diffstat (limited to 'x11-toolkits/ruby-qt2')
-rw-r--r--x11-toolkits/ruby-qt2/Makefile4
-rw-r--r--x11-toolkits/ruby-qt2/distinfo2
-rw-r--r--x11-toolkits/ruby-qt2/files/patch-extconf.rb26
3 files changed, 2 insertions, 30 deletions
diff --git a/x11-toolkits/ruby-qt2/Makefile b/x11-toolkits/ruby-qt2/Makefile
index 2e0f627bfd4b..386719bb0e14 100644
--- a/x11-toolkits/ruby-qt2/Makefile
+++ b/x11-toolkits/ruby-qt2/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= qt2
-PORTVERSION= 0.10b
+PORTVERSION= 0.11
CATEGORIES= x11-toolkits ruby
MASTER_SITES= http://sfns.u-shizuoka-ken.ac.jp/geneng/horie_hp/ruby/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
@@ -15,8 +15,6 @@ DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
-BROKEN= "Weird problem on 4-STABLE + XFree86 4.0.2 + Mesa 3.2.1"
-
LIB_DEPENDS= qt2.4:${PORTSDIR}/x11-toolkits/qt22
USE_MESA= yes
diff --git a/x11-toolkits/ruby-qt2/distinfo b/x11-toolkits/ruby-qt2/distinfo
index 6f8a82f982ee..6f523781f801 100644
--- a/x11-toolkits/ruby-qt2/distinfo
+++ b/x11-toolkits/ruby-qt2/distinfo
@@ -1 +1 @@
-MD5 (ruby/ruby-qt2-0.10b.tar.gz) = bf2719000e14a564b0eb7085f970e3e8
+MD5 (ruby/ruby-qt2-0.11.tar.gz) = 32cd4dfb786c6cc9d8a0a88cb6c0a421
diff --git a/x11-toolkits/ruby-qt2/files/patch-extconf.rb b/x11-toolkits/ruby-qt2/files/patch-extconf.rb
deleted file mode 100644
index 1ad2d9cba1cb..000000000000
--- a/x11-toolkits/ruby-qt2/files/patch-extconf.rb
+++ /dev/null
@@ -1,26 +0,0 @@
---- extconf.rb.orig Sun Dec 24 18:55:56 2000
-+++ extconf.rb Wed Jan 10 05:18:54 2001
-@@ -14,20 +14,15 @@
- # --with-qt2-dir=/usr/lib/qt-2
- dir_config('qt2')
-
--# e.g. --with-qti18n if you use i18n patched Qt lib.
--qti18n = with_config('qti18n')
-+dir_config('x11')
-
--if qti18n
-- $CFLAGS += ' -DI18NQT'
--end
--
--qt = if qti18n.kind_of?(String) then qti18n else 'qt' end
-+qt2 = with_config('qt2', 'qt')
-
- $CFLAGS += ' -I. -O -w '
-
- p $CFLAGS
-
--if have_header('qapplication.h') and have_library(qt)
-+if have_header('qapplication.h') and have_library(qt2)
- create_makefile('qt2')
- else
- print "You do not seem to have qt library. Plrease check qt or extconf.rb.\n"