summaryrefslogtreecommitdiffstats
path: root/x11-toolkits
diff options
context:
space:
mode:
authoradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2003-06-12 16:56:33 +0800
committeradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2003-06-12 16:56:33 +0800
commit42c80bf4d2cc5479559fc4023b277c99e7b0012d (patch)
treeb1d2114d22a9125be5ed6bc728d5b2e8352f4050 /x11-toolkits
parent1277d57ce4315efa00537bdd8c8e73bff017ff60 (diff)
downloadmarcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.tar
marcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.tar.gz
marcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.tar.bz2
marcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.tar.lz
marcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.tar.xz
marcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.tar.zst
marcuscom-ports-42c80bf4d2cc5479559fc4023b277c99e7b0012d.zip
Import gtksourceview-0.3.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@850 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/gtksourceview/Makefile28
-rw-r--r--x11-toolkits/gtksourceview/distinfo1
-rw-r--r--x11-toolkits/gtksourceview/files/patch-configure10
-rw-r--r--x11-toolkits/gtksourceview/files/patch-gtksourceview_gtksourceregex.c11
-rw-r--r--x11-toolkits/gtksourceview/pkg-descr3
-rw-r--r--x11-toolkits/gtksourceview/pkg-plist60
-rw-r--r--x11-toolkits/gtksourceview2/Makefile28
-rw-r--r--x11-toolkits/gtksourceview2/distinfo1
-rw-r--r--x11-toolkits/gtksourceview2/files/patch-configure10
-rw-r--r--x11-toolkits/gtksourceview2/files/patch-gtksourceview_gtksourceregex.c11
-rw-r--r--x11-toolkits/gtksourceview2/pkg-descr3
-rw-r--r--x11-toolkits/gtksourceview2/pkg-plist60
12 files changed, 226 insertions, 0 deletions
diff --git a/x11-toolkits/gtksourceview/Makefile b/x11-toolkits/gtksourceview/Makefile
new file mode 100644
index 000000000..49314fc6d
--- /dev/null
+++ b/x11-toolkits/gtksourceview/Makefile
@@ -0,0 +1,28 @@
+# New ports collection makefile for: gtksourceview
+# Date created: 07 May 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gtksourceview
+PORTVERSION= 0.3.0
+CATEGORIES= x11-toolkits gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.3
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A text widget that adds syntax highlighting to the GtkTextView widget
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_REINPLACE= yes
+USE_GMAKE= yes
+USE_LIBTOOL= yes
+INSTALLS_SHLIB= yes
+USE_GNOME= gnomeprefix gnomehack libgnome
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-L${LOCALBASE}/lib -lgnuregex"
+
+.include <bsd.port.mk>
diff --git a/x11-toolkits/gtksourceview/distinfo b/x11-toolkits/gtksourceview/distinfo
new file mode 100644
index 000000000..393b737c9
--- /dev/null
+++ b/x11-toolkits/gtksourceview/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/gtksourceview-0.3.0.tar.bz2) = 88f6d8347e602cf8e99bdf5d2c70ba60
diff --git a/x11-toolkits/gtksourceview/files/patch-configure b/x11-toolkits/gtksourceview/files/patch-configure
new file mode 100644
index 000000000..6718d62e1
--- /dev/null
+++ b/x11-toolkits/gtksourceview/files/patch-configure
@@ -0,0 +1,10 @@
+--- configure.orig Tue Dec 17 05:27:57 2002
++++ configure Sun Dec 22 17:31:25 2002
+@@ -7270,6 +7270,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff --git a/x11-toolkits/gtksourceview/files/patch-gtksourceview_gtksourceregex.c b/x11-toolkits/gtksourceview/files/patch-gtksourceview_gtksourceregex.c
new file mode 100644
index 000000000..3cc9f9eab
--- /dev/null
+++ b/x11-toolkits/gtksourceview/files/patch-gtksourceview_gtksourceregex.c
@@ -0,0 +1,11 @@
+--- gtksourceview/gtksourceregex.c.orig Thu May 22 12:41:03 2003
++++ gtksourceview/gtksourceregex.c Thu May 22 12:41:31 2003
+@@ -28,7 +28,7 @@
+
+ #ifdef NATIVE_GNU_REGEX
+ #include <sys/types.h>
+-#include <regex.h>
++#include <gnuregex.h>
+ #else
+ #include "gnu-regex/regex.h"
+ #endif
diff --git a/x11-toolkits/gtksourceview/pkg-descr b/x11-toolkits/gtksourceview/pkg-descr
new file mode 100644
index 000000000..d24afadff
--- /dev/null
+++ b/x11-toolkits/gtksourceview/pkg-descr
@@ -0,0 +1,3 @@
+Gtksourceview is a text widget that extends the standard Gtk+ 2.x GtkTextView.
+It improves it by implementing syntax highlighting and other features typical
+of a source editor.
diff --git a/x11-toolkits/gtksourceview/pkg-plist b/x11-toolkits/gtksourceview/pkg-plist
new file mode 100644
index 000000000..0fa0ae02f
--- /dev/null
+++ b/x11-toolkits/gtksourceview/pkg-plist
@@ -0,0 +1,60 @@
+include/gtksourceview-1.0/gtksourceview/gtksourcebuffer.h
+include/gtksourceview-1.0/gtksourceview/gtksourceiter.h
+include/gtksourceview-1.0/gtksourceview/gtksourcelanguage.h
+include/gtksourceview-1.0/gtksourceview/gtksourcelanguagesmanager.h
+include/gtksourceview-1.0/gtksourceview/gtksourcemarker.h
+include/gtksourceview-1.0/gtksourceview/gtksourceprintjob.h
+include/gtksourceview-1.0/gtksourceview/gtksourcestylescheme.h
+include/gtksourceview-1.0/gtksourceview/gtksourcetag.h
+include/gtksourceview-1.0/gtksourceview/gtksourcetagstyle.h
+include/gtksourceview-1.0/gtksourceview/gtksourcetagtable.h
+include/gtksourceview-1.0/gtksourceview/gtksourceview-typebuiltins.h
+include/gtksourceview-1.0/gtksourceview/gtksourceview.h
+lib/libgtksourceview-1.0.a
+lib/libgtksourceview-1.0.so
+lib/libgtksourceview-1.0.so.0
+libdata/pkgconfig/gtksourceview-1.0.pc
+share/doc/gtksourceview/GtkSourceBuffer.html
+share/doc/gtksourceview/GtkSourceLanguage.html
+share/doc/gtksourceview/GtkSourceLanguagesManager.html
+share/doc/gtksourceview/GtkSourcePrintJob.html
+share/doc/gtksourceview/GtkSourceStyleScheme.html
+share/doc/gtksourceview/GtkSourceTag.html
+share/doc/gtksourceview/GtkSourceTagTable.html
+share/doc/gtksourceview/GtkSourceView.html
+share/doc/gtksourceview/gtksourceview-GtkSourceMarker.html
+share/doc/gtksourceview/gtksourceview-GtkSourceTagStyle.html
+share/doc/gtksourceview/gtksourceview-Searching-in-a-GtkSourceBuffer.html
+share/doc/gtksourceview/gtksourceview.devhelp
+share/doc/gtksourceview/home.png
+share/doc/gtksourceview/index.html
+share/doc/gtksourceview/index.sgml
+share/doc/gtksourceview/left.png
+share/doc/gtksourceview/right.png
+share/doc/gtksourceview/up.png
+share/gnome/gtksourceview-1.0/language-specs/ada.lang
+share/gnome/gtksourceview-1.0/language-specs/c.lang
+share/gnome/gtksourceview-1.0/language-specs/cpp.lang
+share/gnome/gtksourceview-1.0/language-specs/desktop.lang
+share/gnome/gtksourceview-1.0/language-specs/diff.lang
+share/gnome/gtksourceview-1.0/language-specs/html.lang
+share/gnome/gtksourceview-1.0/language-specs/idl.lang
+share/gnome/gtksourceview-1.0/language-specs/java.lang
+share/gnome/gtksourceview-1.0/language-specs/language.dtd
+share/gnome/gtksourceview-1.0/language-specs/latex.lang
+share/gnome/gtksourceview-1.0/language-specs/perl.lang
+share/gnome/gtksourceview-1.0/language-specs/po.lang
+share/gnome/gtksourceview-1.0/language-specs/python.lang
+share/gnome/gtksourceview-1.0/language-specs/xml.lang
+share/locale/cs/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/de/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/es/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/pt/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/ru/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/sv/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/zh_TW/LC_MESSAGES/gtksourceview-1.0.mo
+@dirrm share/gnome/gtksourceview-1.0/language-specs
+@dirrm share/gnome/gtksourceview-1.0
+@dirrm share/doc/gtksourceview
+@dirrm include/gtksourceview-1.0/gtksourceview
+@dirrm include/gtksourceview-1.0
diff --git a/x11-toolkits/gtksourceview2/Makefile b/x11-toolkits/gtksourceview2/Makefile
new file mode 100644
index 000000000..49314fc6d
--- /dev/null
+++ b/x11-toolkits/gtksourceview2/Makefile
@@ -0,0 +1,28 @@
+# New ports collection makefile for: gtksourceview
+# Date created: 07 May 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gtksourceview
+PORTVERSION= 0.3.0
+CATEGORIES= x11-toolkits gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.3
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A text widget that adds syntax highlighting to the GtkTextView widget
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_REINPLACE= yes
+USE_GMAKE= yes
+USE_LIBTOOL= yes
+INSTALLS_SHLIB= yes
+USE_GNOME= gnomeprefix gnomehack libgnome
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-L${LOCALBASE}/lib -lgnuregex"
+
+.include <bsd.port.mk>
diff --git a/x11-toolkits/gtksourceview2/distinfo b/x11-toolkits/gtksourceview2/distinfo
new file mode 100644
index 000000000..393b737c9
--- /dev/null
+++ b/x11-toolkits/gtksourceview2/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/gtksourceview-0.3.0.tar.bz2) = 88f6d8347e602cf8e99bdf5d2c70ba60
diff --git a/x11-toolkits/gtksourceview2/files/patch-configure b/x11-toolkits/gtksourceview2/files/patch-configure
new file mode 100644
index 000000000..6718d62e1
--- /dev/null
+++ b/x11-toolkits/gtksourceview2/files/patch-configure
@@ -0,0 +1,10 @@
+--- configure.orig Tue Dec 17 05:27:57 2002
++++ configure Sun Dec 22 17:31:25 2002
+@@ -7270,6 +7270,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff --git a/x11-toolkits/gtksourceview2/files/patch-gtksourceview_gtksourceregex.c b/x11-toolkits/gtksourceview2/files/patch-gtksourceview_gtksourceregex.c
new file mode 100644
index 000000000..3cc9f9eab
--- /dev/null
+++ b/x11-toolkits/gtksourceview2/files/patch-gtksourceview_gtksourceregex.c
@@ -0,0 +1,11 @@
+--- gtksourceview/gtksourceregex.c.orig Thu May 22 12:41:03 2003
++++ gtksourceview/gtksourceregex.c Thu May 22 12:41:31 2003
+@@ -28,7 +28,7 @@
+
+ #ifdef NATIVE_GNU_REGEX
+ #include <sys/types.h>
+-#include <regex.h>
++#include <gnuregex.h>
+ #else
+ #include "gnu-regex/regex.h"
+ #endif
diff --git a/x11-toolkits/gtksourceview2/pkg-descr b/x11-toolkits/gtksourceview2/pkg-descr
new file mode 100644
index 000000000..d24afadff
--- /dev/null
+++ b/x11-toolkits/gtksourceview2/pkg-descr
@@ -0,0 +1,3 @@
+Gtksourceview is a text widget that extends the standard Gtk+ 2.x GtkTextView.
+It improves it by implementing syntax highlighting and other features typical
+of a source editor.
diff --git a/x11-toolkits/gtksourceview2/pkg-plist b/x11-toolkits/gtksourceview2/pkg-plist
new file mode 100644
index 000000000..0fa0ae02f
--- /dev/null
+++ b/x11-toolkits/gtksourceview2/pkg-plist
@@ -0,0 +1,60 @@
+include/gtksourceview-1.0/gtksourceview/gtksourcebuffer.h
+include/gtksourceview-1.0/gtksourceview/gtksourceiter.h
+include/gtksourceview-1.0/gtksourceview/gtksourcelanguage.h
+include/gtksourceview-1.0/gtksourceview/gtksourcelanguagesmanager.h
+include/gtksourceview-1.0/gtksourceview/gtksourcemarker.h
+include/gtksourceview-1.0/gtksourceview/gtksourceprintjob.h
+include/gtksourceview-1.0/gtksourceview/gtksourcestylescheme.h
+include/gtksourceview-1.0/gtksourceview/gtksourcetag.h
+include/gtksourceview-1.0/gtksourceview/gtksourcetagstyle.h
+include/gtksourceview-1.0/gtksourceview/gtksourcetagtable.h
+include/gtksourceview-1.0/gtksourceview/gtksourceview-typebuiltins.h
+include/gtksourceview-1.0/gtksourceview/gtksourceview.h
+lib/libgtksourceview-1.0.a
+lib/libgtksourceview-1.0.so
+lib/libgtksourceview-1.0.so.0
+libdata/pkgconfig/gtksourceview-1.0.pc
+share/doc/gtksourceview/GtkSourceBuffer.html
+share/doc/gtksourceview/GtkSourceLanguage.html
+share/doc/gtksourceview/GtkSourceLanguagesManager.html
+share/doc/gtksourceview/GtkSourcePrintJob.html
+share/doc/gtksourceview/GtkSourceStyleScheme.html
+share/doc/gtksourceview/GtkSourceTag.html
+share/doc/gtksourceview/GtkSourceTagTable.html
+share/doc/gtksourceview/GtkSourceView.html
+share/doc/gtksourceview/gtksourceview-GtkSourceMarker.html
+share/doc/gtksourceview/gtksourceview-GtkSourceTagStyle.html
+share/doc/gtksourceview/gtksourceview-Searching-in-a-GtkSourceBuffer.html
+share/doc/gtksourceview/gtksourceview.devhelp
+share/doc/gtksourceview/home.png
+share/doc/gtksourceview/index.html
+share/doc/gtksourceview/index.sgml
+share/doc/gtksourceview/left.png
+share/doc/gtksourceview/right.png
+share/doc/gtksourceview/up.png
+share/gnome/gtksourceview-1.0/language-specs/ada.lang
+share/gnome/gtksourceview-1.0/language-specs/c.lang
+share/gnome/gtksourceview-1.0/language-specs/cpp.lang
+share/gnome/gtksourceview-1.0/language-specs/desktop.lang
+share/gnome/gtksourceview-1.0/language-specs/diff.lang
+share/gnome/gtksourceview-1.0/language-specs/html.lang
+share/gnome/gtksourceview-1.0/language-specs/idl.lang
+share/gnome/gtksourceview-1.0/language-specs/java.lang
+share/gnome/gtksourceview-1.0/language-specs/language.dtd
+share/gnome/gtksourceview-1.0/language-specs/latex.lang
+share/gnome/gtksourceview-1.0/language-specs/perl.lang
+share/gnome/gtksourceview-1.0/language-specs/po.lang
+share/gnome/gtksourceview-1.0/language-specs/python.lang
+share/gnome/gtksourceview-1.0/language-specs/xml.lang
+share/locale/cs/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/de/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/es/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/pt/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/ru/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/sv/LC_MESSAGES/gtksourceview-1.0.mo
+share/locale/zh_TW/LC_MESSAGES/gtksourceview-1.0.mo
+@dirrm share/gnome/gtksourceview-1.0/language-specs
+@dirrm share/gnome/gtksourceview-1.0
+@dirrm share/doc/gtksourceview
+@dirrm include/gtksourceview-1.0/gtksourceview
+@dirrm include/gtksourceview-1.0