Modified: trunk/dports/gnome/gtksourceview3/Portfile (147399 => 147400)
--- trunk/dports/gnome/gtksourceview3/Portfile 2016-04-03 00:32:02 UTC (rev 147399)
+++ trunk/dports/gnome/gtksourceview3/Portfile 2016-04-03 00:41:30 UTC (rev 147400)
@@ -7,7 +7,7 @@
name gtksourceview3
set gname gtksourceview
-version 3.18.2
+version 3.20.1
license LGPL-2.1+
set branch [join [lrange [split ${version} .] 0 1] .]
maintainers devans openmaintainer
@@ -27,15 +27,11 @@
distname ${gname}-${version}
use_xz yes
-checksums rmd160 1d32c6147346147fb90f323a7f8e7b3cbf72afac \
- sha256 60f75a9f0039e13a2281fc595b5ef7344afa06732cc53b57d13234bfb0a5b7b2
+checksums rmd160 44ef5edc066d2b7f8f2171dbd8e4f3d83161ac8b \
+ sha256 322d95c0eaba768a47956ccf1af732ea9377ab7a8afc145b1a34a04012ae8c4c
depends_build port:pkgconfig \
- port:intltool \
- port:gtk-doc \
- port:autoconf \
- port:automake \
- port:libtool
+ port:gtk-doc
depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 \
port:gettext \
@@ -47,14 +43,11 @@
patchfiles patch-no-as-needed.diff
-# reconfigure using upstream autogen.sh for intltool 0.51 compatibility
+# autoreconf required due to patching of m4/ax_compiler_flags_ldflags.m4
-post-patch {
- xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath}
-}
+use_autoreconf yes
+autoreconf.args -fvi
-configure.cmd ./autogen.sh
-
configure.args --enable-compile-warnings=minimum \
--disable-silent-rules
Deleted: trunk/dports/gnome/gtksourceview3/files/autogen.sh (147399 => 147400)
--- trunk/dports/gnome/gtksourceview3/files/autogen.sh 2016-04-03 00:32:02 UTC (rev 147399)
+++ trunk/dports/gnome/gtksourceview3/files/autogen.sh 2016-04-03 00:41:30 UTC (rev 147400)
@@ -1,38 +0,0 @@
-#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-test -n "$srcdir" || srcdir=`dirname "$0"`
-test -n "$srcdir" || srcdir=.
-
-olddir=`pwd`
-
-cd $srcdir
-
-(test -f configure.ac) || {
- echo "*** ERROR: Directory "\`$srcdir\'" does not look like the top-level project directory ***"
- exit 1
-}
-
-PKG_NAME=`autoconf --trace 'AC_INIT:$1' configure.ac`
-
-if [ "$#" = 0 -a "x$NOCONFIGURE" = "x" ]; then
- echo "*** WARNING: I am going to run \`configure' with no arguments." >&2
- echo "*** If you wish to pass any to it, please specify them on the" >&2
- echo "*** \`$0\' command line." >&2
- echo "" >&2
-fi
-
-aclocal --install || exit 1
-gtkdocize --copy || exit 1
-intltoolize --force --copy --automake || exit 1
-autoreconf --verbose --force --install -Wno-portability || exit 1
-
-cd $olddir
-if [ "$NOCONFIGURE" = "" ]; then
- $srcdir/configure "$@" || exit 1
-
- if [ "$1" = "--help" ]; then exit 0 else
- echo "Now type \`make\' to compile $PKG_NAME" || exit 1
- fi
-else
- echo "Skipping configure process."
-fi