Revision: 145183 https://trac.macports.org/changeset/145183 Author: devans@macports.org Date: 2016-01-27 17:18:32 -0800 (Wed, 27 Jan 2016) Log Message: ----------- GNOME-3/unstable: gnome-characters, copy from stable and update to unstable version 3.19.3, update autogen.sh from upstream git, no longer requires gnome-common to build, use gnome unstable livecheck. Modified Paths: -------------- users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/Portfile users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/files/autogen.sh Added Paths: ----------- users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/ Property changes on: users/devans/GNOME-3/unstable/dports/gnome/gnome-characters ___________________________________________________________________ Added: svn:mergeinfo + /users/devans/GNOME-3/stable/dports/gnome/gnome-characters:145026 Modified: users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/Portfile =================================================================== --- users/devans/GNOME-3/stable/dports/gnome/gnome-characters/Portfile 2016-01-23 23:36:09 UTC (rev 145025) +++ users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/Portfile 2016-01-28 01:18:32 UTC (rev 145183) @@ -5,7 +5,7 @@ PortGroup gobject_introspection 1.0 name gnome-characters -version 3.18.1 +version 3.19.3 license GPL-2+ set branch [join [lrange [split ${version} .] 0 1] .] description A simple utility application to find and insert unusual characters. @@ -18,13 +18,12 @@ use_xz yes -checksums rmd160 44c47a54edf2a983e18a7c8dbbf90fcb893f10a3 \ - sha256 161839bb6c1ffca78b6c11b8d4f3f32b8263705911df0aed3268672c050b9bac +checksums rmd160 016110438d3d1f6cf206e56497d617ce0747a56d \ + sha256 d7d97edd4a1ffbee1a90221d389a1060c3ebe92261efc6b62b1784632cf6c8c5 depends_build port:pkgconfig \ port:intltool \ port:appstream-glib \ - port:gnome-common \ port:autoconf \ port:automake \ port:libtool @@ -55,4 +54,4 @@ system "${prefix}/bin/glib-compile-schemas ${prefix}/share/glib-2.0/schemas" } -livecheck.type gnome +livecheck.type gnome-with-unstable Modified: users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/files/autogen.sh =================================================================== --- users/devans/GNOME-3/stable/dports/gnome/gnome-characters/files/autogen.sh 2016-01-23 23:36:09 UTC (rev 145025) +++ users/devans/GNOME-3/unstable/dports/gnome/gnome-characters/files/autogen.sh 2016-01-28 01:18:32 UTC (rev 145183) @@ -1,33 +1,30 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. +test -n "$srcdir" || srcdir=`dirname "$0"` +test -n "$srcdir" || srcdir=. -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. +olddir=`pwd` -ACLOCAL_FLAGS="${ACLOCAL_FLAGS}" +cd $srcdir -test -f $srcdir/configure.ac || { - echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level gnome-characters directory" - exit 1 +(test -f configure.ac) || { + echo "*** ERROR: Directory "\`$srcdir\'" does not look like the top-level project directory ***" + exit 1 } -which gnome-autogen.sh || { - echo "You need to install gnome-common from GNOME Git (or from" - echo "your OS vendor's package manager)." - exit 1 -} +PKG_NAME=`autoconf --trace 'AC_INIT:$1' configure.ac` -# gllib/unictype contains gperf generated source code -: ${GPERF=gperf} -"$GPERF" --version 2>&1 >/dev/null || { - echo "You need to install gperf." - exit 1 -} +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 -(cd "$srcdir" ; -test -d m4 || mkdir m4/ ; -git submodule update --init --recursive ; +aclocal --install || exit 1 +intltoolize --force --copy --automake || exit 1 +autoreconf --verbose --force --install -Wno-portability || exit 1 + test -z "$GNULIB_SRCDIR" || \ "$GNULIB_SRCDIR"/gnulib-tool --import \ --source-base=gllib --m4-base=glm4 --tests-base=gltests \ @@ -45,7 +42,16 @@ uninorm/canonical-decomposition \ unistr/u32-to-u8 \ unitypes \ - uniname/uniname ; -) -. gnome-autogen.sh + uniname/uniname \ + uniwidth/width +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
participants (1)
-
devans@macports.org