diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-12 03:11:10 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-12 03:11:10 +0800 |
commit | e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06 (patch) | |
tree | 61ff413ed2d532bb919e9b4c46feb12c821c186c /editors | |
parent | 72ddccb3836d99aa494a0bc6486f10c77c96fd38 (diff) | |
download | marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.tar marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.tar.gz marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.tar.bz2 marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.tar.lz marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.tar.xz marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.tar.zst marcuscom-ports-e7cfcf60d5cd6a3e336e85cb8e3a8fb92d20aa06.zip |
Update to 2.15.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6398 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'editors')
-rw-r--r-- | editors/gedit-plugins/Makefile | 35 | ||||
-rw-r--r-- | editors/gedit-plugins/distinfo | 3 | ||||
-rw-r--r-- | editors/gedit-plugins/files/patch-configure | 94 | ||||
-rw-r--r-- | editors/gedit-plugins/pkg-descr | 1 | ||||
-rw-r--r-- | editors/gedit-plugins/pkg-plist | 18 |
5 files changed, 151 insertions, 0 deletions
diff --git a/editors/gedit-plugins/Makefile b/editors/gedit-plugins/Makefile new file mode 100644 index 000000000..2407daa96 --- /dev/null +++ b/editors/gedit-plugins/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: gedit-plugins +# Date created: 19 September 2003 +# Whom: Adam Weinberger <adamw@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= gedit-plugins +PORTVERSION= 2.15.3 +CATEGORIES= editors gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Plugins for GEdit 2 + +BUILD_DEPENDS= gedit:${PORTSDIR}/editors/gedit \ + gucharmap:${PORTSDIR}/deskutils/gucharmap +RUN_DEPENDS= gedit:${PORTSDIR}/editors/gedit \ + gucharmap:${PORTSDIR}/deskutils/gucharmap + +USE_BZIP2= yes +USE_PYTHON= yes +USE_X_PREFIX= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +USE_GNOME= gnomehack gnomeprefix gnometarget intlhack pygnomedesktop +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +GCONF_SCHEMAS= gedit-show-tabbar-plugin.schemas + +.include <bsd.port.mk> diff --git a/editors/gedit-plugins/distinfo b/editors/gedit-plugins/distinfo new file mode 100644 index 000000000..1ded506a4 --- /dev/null +++ b/editors/gedit-plugins/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gedit-plugins-2.15.3.tar.bz2) = 4182e0b3b522cb35e5348ce00c8aaa1d +SHA256 (gnome2/gedit-plugins-2.15.3.tar.bz2) = 00ae3061a3fc388dfd02ed4106bec9f48973bbcda4a3320d0fb5136232b5e123 +SIZE (gnome2/gedit-plugins-2.15.3.tar.bz2) = 286307 diff --git a/editors/gedit-plugins/files/patch-configure b/editors/gedit-plugins/files/patch-configure new file mode 100644 index 000000000..5ce757d34 --- /dev/null +++ b/editors/gedit-plugins/files/patch-configure @@ -0,0 +1,94 @@ +--- configure.orig Sun Jun 11 15:05:43 2006 ++++ configure Sun Jun 11 15:06:33 2006 +@@ -22866,7 +22866,7 @@ disabled_plugins= + # ================================================================ + # Plugin specific checks + # ================================================================ +-function check_plugin_defined() { ++check_plugin_defined() { + if echo "$2" | egrep "\b($1)\b" > /dev/null; + then + return 1 +@@ -22875,17 +22875,17 @@ function check_plugin_defined() { + fi + } + +-function plugin_defined() { ++plugin_defined() { + check_plugin_defined "$1" "$PLUGINS" + return $? + } + +-function plugin_defined_explicit() { ++plugin_defined_explicit() { + check_plugin_defined "$1" "$explicit_plugins" + return $? + } + +-function undef_plugin() { ++undef_plugin() { + if test -z "$disabled_plugins" + then + disabled_plugins="$1 ($2)" +@@ -22893,13 +22893,13 @@ function undef_plugin() { + disabled_plugins="$disabled_plugins, $1 ($2)" + fi + +- PLUGINS=$(echo "$PLUGINS" | sed "s/\(\W\|^\)$1\b//") ++ PLUGINS=$(echo "$PLUGINS" | sed "s/[^[:alnum:]]$1[[:space:]]{1,}//" | sed "s/[^[:alnum:]]$1$//" | sed "s/^$1[[:space:]]{1,}//") + } + + # ================================================================ + # disable all python plugins if there is no python support + # ================================================================ +-if test "x$enable_python" == "xno" ++if test "x$enable_python" = "xno" + then + for pl in $PYTHON_ALL_PLUGINS + do +@@ -22911,7 +22911,7 @@ fi + # gucharmap + # ================================================================ + plugin_defined charmap +-if test "$?" == 1 ++if test "$?" = 1 + then + + pkg_failed=no +@@ -22999,10 +22999,10 @@ echo "${ECHO_T}yes" >&6 + have_gucharmap=yes + fi + +- if test "x$have_gucharmap" == "xno" ++ if test "x$have_gucharmap" = "xno" + then + plugin_defined_explicit charmap +- if test "$?" == 1 ++ if test "$?" = 1 + then + { { echo "$as_me:$LINENO: error: gucharmap could not be found, needed to built charmap plugin" >&5 + echo "$as_me: error: gucharmap could not be found, needed to built charmap plugin" >&2;} +@@ -23020,12 +23020,12 @@ fi + # Terminal plugin vte check + # ================================================================ + plugin_defined terminal +-if test "$?" == 1 ++if test "$?" = 1 + then + echo "$as_me:$LINENO: checking for python-vte module" >&5 + echo $ECHO_N "checking for python-vte module... $ECHO_C" >&6 + +- if $PYTHON -c "import vte" &>/dev/null; ++ if $PYTHON -c "import vte" >/dev/null 2>&1; + then + echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6 +@@ -23035,7 +23035,7 @@ echo "${ECHO_T}yes" >&6 + echo "${ECHO_T}no" >&6 + + plugin_defined_explicit terminal +- if test "$?" == 1 ++ if test "$?" = 1 + then + { { echo "$as_me:$LINENO: error: the python vte module could not be found, needed to built terminal plugin" >&5 + echo "$as_me: error: the python vte module could not be found, needed to built terminal plugin" >&2;} diff --git a/editors/gedit-plugins/pkg-descr b/editors/gedit-plugins/pkg-descr new file mode 100644 index 000000000..f4eabb23d --- /dev/null +++ b/editors/gedit-plugins/pkg-descr @@ -0,0 +1 @@ +Various additional plug-ins for GEdit 2. diff --git a/editors/gedit-plugins/pkg-plist b/editors/gedit-plugins/pkg-plist new file mode 100644 index 000000000..517fccaf1 --- /dev/null +++ b/editors/gedit-plugins/pkg-plist @@ -0,0 +1,18 @@ +lib/gedit-2/plugins/charmap.gedit-plugin +lib/gedit-2/plugins/colorpicker.gedit-plugin +lib/gedit-2/plugins/colorpicker.py +lib/gedit-2/plugins/colorpicker.pyc +lib/gedit-2/plugins/colorpicker.pyo +lib/gedit-2/plugins/joinlines.gedit-plugin +lib/gedit-2/plugins/joinlines.py +lib/gedit-2/plugins/joinlines.pyc +lib/gedit-2/plugins/joinlines.pyo +lib/gedit-2/plugins/libcharmap.la +lib/gedit-2/plugins/libcharmap.so +lib/gedit-2/plugins/libshowtabbar.la +lib/gedit-2/plugins/libshowtabbar.so +lib/gedit-2/plugins/showtabbar.gedit-plugin +lib/gedit-2/plugins/smartspaces.gedit-plugin +lib/gedit-2/plugins/smartspaces.py +lib/gedit-2/plugins/smartspaces.pyc +lib/gedit-2/plugins/smartspaces.pyo |