mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 03:00:42 -04:00
Mate is a lite desktop forked from gnome2. Most of the work is done by Jeremy Messenger (mezz@). The only thing I did was update a few ports to later 1.6 release and attempting to keep up with ports infra changes. Resulting bugs are all mine. Mate is a sort of replacement for Gnome 2. So people wanting to keep a Gnome 2 like desktop should switch. Gnome 2 will be replaced by Gnome 3 in the near future. This switch will be announce with a transition time so people have more time to switch if they haven't already. This release was made possible by everyone that send friendly pokes to keep mate on my mind. Approved by: portmgr (bapt)
27 lines
635 B
Bash
27 lines
635 B
Bash
--- autogen.sh.orig 2013-10-19 11:55:08.000000000 +0200
|
|
+++ autogen.sh 2013-10-19 11:55:03.000000000 +0200
|
|
@@ -0,0 +1,24 @@
|
|
+#!/bin/sh
|
|
+# Run this to generate all the initial makefiles, etc.
|
|
+
|
|
+srcdir=`dirname $0`
|
|
+test -z "$srcdir" && srcdir=.
|
|
+
|
|
+PKG_NAME="mate-power-manager"
|
|
+
|
|
+(test -f $srcdir/configure.ac) || {
|
|
+ echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
+ echo " top-level $PKG_NAME directory"
|
|
+ exit 1
|
|
+}
|
|
+
|
|
+which mate-autogen || {
|
|
+ echo "You need to install mate-common from the MATE Git"
|
|
+ exit 1
|
|
+}
|
|
+
|
|
+REQUIRED_AUTOMAKE_VERSION=1.9
|
|
+MATE_DATADIR="$mate_datadir"
|
|
+
|
|
+. mate-autogen
|
|
+
|