summaryrefslogtreecommitdiff
path: root/graphics/ruby-gdk_pixbuf2
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-02-28 12:58:23 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-02-28 12:58:23 +0000
commit6b7854c0884fc9af4334b7272fbf224c4118bb30 (patch)
tree1c66c716a32e144dd394cb19097134039a1035cd /graphics/ruby-gdk_pixbuf2
parentUpdate to 0.24. (diff)
Add ruby-gdk_pixbuf, a Ruby binding for Gdkpixbuf.
Notes
Notes: svn path=/head/; revision=38889
Diffstat (limited to 'graphics/ruby-gdk_pixbuf2')
-rw-r--r--graphics/ruby-gdk_pixbuf2/Makefile47
-rw-r--r--graphics/ruby-gdk_pixbuf2/files/patch-extconf.rb42
-rw-r--r--graphics/ruby-gdk_pixbuf2/pkg-comment1
-rw-r--r--graphics/ruby-gdk_pixbuf2/pkg-descr4
-rw-r--r--graphics/ruby-gdk_pixbuf2/pkg-plist9
5 files changed, 103 insertions, 0 deletions
diff --git a/graphics/ruby-gdk_pixbuf2/Makefile b/graphics/ruby-gdk_pixbuf2/Makefile
new file mode 100644
index 000000000000..55c9544b4767
--- /dev/null
+++ b/graphics/ruby-gdk_pixbuf2/Makefile
@@ -0,0 +1,47 @@
+# New ports collection makefile for: ruby-gdk_pixbuf
+# Date created: 28 February 2001
+# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gdk_pixbuf
+PORTVERSION= ${RUBY_GNOME_PORTVERSION}
+CATEGORIES= graphics ruby
+MASTER_SITES= ${RUBY_GNOME_MASTER_SITES}
+PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
+DISTNAME= ${RUBY_GNOME_DISTNAME}
+DIST_SUBDIR= ruby
+
+MAINTAINER= knu@FreeBSD.org
+
+LIB_DEPENDS= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
+RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk.so:${PORTSDIR}/x11-toolkits/ruby-gtk
+
+USE_RUBY= yes
+USE_RUBY_EXTCONF= yes
+USE_XLIB= yes
+USE_GLIB= yes
+
+.include "${.CURDIR}/../../x11/ruby-gnome/Makefile.common"
+
+WRKSRC= ${RUBY_GNOME_WRKSRC}/${PORTNAME}
+INSTALL_TARGET= site-install
+CONFIGURE_ARGS= --with-glib-config="${GLIB_CONFIG}"
+
+DOCS_EN= ChangeLog README
+
+post-extract:
+ ${MV} ${WRKSRC:S/gdk_pixbuf$/gdkpixbuf/} ${WRKSRC}
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
+ ${CP} -R ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
+ ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
+.for f in ${DOCS_EN}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/graphics/ruby-gdk_pixbuf2/files/patch-extconf.rb b/graphics/ruby-gdk_pixbuf2/files/patch-extconf.rb
new file mode 100644
index 000000000000..287f57d436e6
--- /dev/null
+++ b/graphics/ruby-gdk_pixbuf2/files/patch-extconf.rb
@@ -0,0 +1,42 @@
+--- extconf.rb.orig Fri Mar 31 06:21:47 2000
++++ extconf.rb Wed Feb 28 21:18:34 2001
+@@ -1,26 +1,25 @@
+ require 'mkmf'
+
+-rubygtk_dir = "../gtk"
+-rubygtk_dir = ARGV[0] if ARGV[0]
++glib_config = with_config("glib-config", "glib-config")
++gdk_pixbuf_config = with_config("gdk-pixbuf-config", "gdk-pixbuf-config")
++
++while /^--/ =~ ARGV[0]
++ ARGV.shift
++end
++
++rubygtk_dir = ARGV.shift || "../gtk"
+ unless FileTest.exist?(rubygtk_dir)
+ raise "directry #{rubygtk_dir} not found. Please specify Ruby/Gtk source dir."
+ end
+-gtklib_dir = []
+-`gtk-config --libs`.split(' ').each do |e|
+- if e=~ /^-L/ then
+- gtklib_dir.push(e)
+- end
+-end
+
+-$CFLAGS = "-I#{rubygtk_dir}/src " + `gdk-pixbuf-config --cflags`.chomp
+-$LDFLAGS = `gdk-pixbuf-config --libs`.chomp
++$CFLAGS += "-I#{rubygtk_dir}/src " + `#{glib_config} --cflags`.chomp + ' ' + `#{gdk_pixbuf_config} --cflags`.chomp
++$LDFLAGS += `#{glib_config} --libs`.chomp + ' ' + `#{gdk_pixbuf_config} --libs`.chomp
+
+ have_library("X11", "XOpenDisplay") &&
+ have_library("Xi", "XOpenDevice") &&
+ have_library("Xext", "XextFindDisplay") &&
+ have_library("Xmu", "XmuInternAtom") &&
+-have_library("glib", "g_print") &&
+-have_library("gdk", "gdk_init") &&
+-have_library("gdk_pixbuf", "gdk_pixbuf_new") &&
+-
++have_func("g_print") &&
++have_func("gdk_init") &&
++have_func("gdk_pixbuf_new") &&
+ create_makefile('gdk_pixbuf')
diff --git a/graphics/ruby-gdk_pixbuf2/pkg-comment b/graphics/ruby-gdk_pixbuf2/pkg-comment
new file mode 100644
index 000000000000..8e0acee39b67
--- /dev/null
+++ b/graphics/ruby-gdk_pixbuf2/pkg-comment
@@ -0,0 +1 @@
+Ruby binding for Gdkpixbuf
diff --git a/graphics/ruby-gdk_pixbuf2/pkg-descr b/graphics/ruby-gdk_pixbuf2/pkg-descr
new file mode 100644
index 000000000000..fb79fd7bb8c7
--- /dev/null
+++ b/graphics/ruby-gdk_pixbuf2/pkg-descr
@@ -0,0 +1,4 @@
+Ruby/Gdkpixbuf is a Ruby binding for Gdkpixbuf.
+
+Author: Hiroshi Igarashi <igarashi@ueda.info.waseda.ac.jp>
+WWW: http://www.ruby-lang.org/gtk/en/
diff --git a/graphics/ruby-gdk_pixbuf2/pkg-plist b/graphics/ruby-gdk_pixbuf2/pkg-plist
new file mode 100644
index 000000000000..214880fa3578
--- /dev/null
+++ b/graphics/ruby-gdk_pixbuf2/pkg-plist
@@ -0,0 +1,9 @@
+%%RUBY_SITEARCHLIBDIR%%/gdk_pixbuf.so
+%%RUBY_SITELIBDIR%%/gdk_pixbuf.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gdk_pixbuf/scale.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gdk_pixbuf/test.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gdk_pixbuf/to_drawable.rb
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/gdk_pixbuf
+%%PORTDOCS%%%%RUBY_DOCDIR%%/gdk_pixbuf/ChangeLog
+%%PORTDOCS%%%%RUBY_DOCDIR%%/gdk_pixbuf/README
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/gdk_pixbuf