mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
a236e2d0bf
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)
56 lines
2.3 KiB
Plaintext
56 lines
2.3 KiB
Plaintext
--- configure.ac.orig 2013-03-26 21:00:43.000000000 -0500
|
|
+++ configure.ac 2013-03-26 21:06:27.000000000 -0500
|
|
@@ -349,7 +349,7 @@
|
|
GETTEXT_PACKAGE=mate-applets
|
|
AC_SUBST(GETTEXT_PACKAGE)
|
|
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext Package])
|
|
-AC_DEFINE_DIR(MATELOCALEDIR, "${datadir}/locale", [locale directory])
|
|
+AC_DEFINE_DIR(MATELOCALEDIR, [localedir], [locale directory])
|
|
AM_GLIB_GNU_GETTEXT
|
|
|
|
# this is the directory where the *.{mo,gmo} files are installed
|
|
@@ -390,8 +390,8 @@
|
|
AC_CHECK_LIB(apm,apm_read,[HAVE_LIBAPM=yes],[HAVE_LIBAPM=no])
|
|
;;
|
|
# list of supported OS cores that do not use libapm
|
|
- i386-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu)
|
|
- if [ -n "${OS_SYS}" ]; then
|
|
+ i386-*-freebsd*|amd64-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu)
|
|
+ if test -n "${OS_SYS}" ; then
|
|
ACPIINC="-I${OS_SYS}"
|
|
else
|
|
ACPIINC="-I/usr/src/sys"
|
|
@@ -521,6 +521,9 @@
|
|
*linux*)
|
|
build_cpufreq_applet=yes
|
|
;;
|
|
+ i386-*-freebsd*|amd64-*-freebsd*)
|
|
+ build_cpufreq_applet=yes
|
|
+ ;;
|
|
*)
|
|
AC_MSG_WARN([${host} is not supported by cpufreq applet, not building])
|
|
build_cpufreq_applet=no
|
|
@@ -623,14 +626,14 @@
|
|
builderdir="${pkgdatadir}/builder"
|
|
AC_SUBST(builderdir)
|
|
|
|
-AC_DEFINE_DIR(MATE_ICONDIR, "${iconsdir}", [Mate Icon Directory])
|
|
-AC_DEFINE_DIR(MATE_PIXMAPSDIR, "${pixmapsdir}", [Mate Pixmaps Directory])
|
|
-AC_DEFINE_DIR(PKGDATADIR, "${pkgdatadir}", [Mate Applets Directory])
|
|
-AC_DEFINE_DIR(GTK_BUILDERDIR, "${builderdir}", [GtkBuilder Resources Directory])
|
|
-AC_DEFINE_DIR(DATADIR, "${datadir}", [datadir])
|
|
-AC_DEFINE_DIR(SYSCONFDIR, "${sysconfdir}", [sysconfdir])
|
|
-AC_DEFINE_DIR(LIBDIR, "${libdir}", [libdir])
|
|
-AC_DEFINE_DIR(PREFIX, "$prefix", [install prefix])
|
|
+AC_DEFINE_DIR(MATE_ICONDIR, [iconsdir], [Mate Icon Directory])
|
|
+AC_DEFINE_DIR(MATE_PIXMAPSDIR, [pixmapsdir], [Mate Pixmaps Directory])
|
|
+AC_DEFINE_DIR(PKGDATADIR, [pkgdatadir], [Mate Applets Directory])
|
|
+AC_DEFINE_DIR(GTK_BUILDERDIR, [builderdir], [GtkBuilder Resources Directory])
|
|
+AC_DEFINE_DIR(DATADIR, [datadir], [datadir])
|
|
+AC_DEFINE_DIR(SYSCONFDIR, [sysconfdir], [sysconfdir])
|
|
+AC_DEFINE_DIR(LIBDIR, [libdir], [libdir])
|
|
+AC_DEFINE_DIR(PREFIX, [prefix], [install prefix])
|
|
|
|
AS_AC_EXPAND(DATADIR, "${datadir}")
|
|
AS_AC_EXPAND(PYTHONDIR, $pythondir)
|