summaryrefslogtreecommitdiffstats
path: root/x11/cinnamon-desktop/Makefile
diff options
context:
space:
mode:
authorgusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059>2014-01-21 20:30:41 +0800
committergusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059>2014-01-21 20:30:41 +0800
commita1dc004e34edc7a1a1e4ea97729324bee8e3815c (patch)
tree8934c7d35d204f2ec64c9e83e7ff6fde1e05f3e9 /x11/cinnamon-desktop/Makefile
parent2d81dbc2a8ad64f6ed1f38b84ef0afc0ac766d1b (diff)
downloadmarcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.tar
marcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.tar.gz
marcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.tar.bz2
marcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.tar.lz
marcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.tar.xz
marcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.tar.zst
marcuscom-ports-a1dc004e34edc7a1a1e4ea97729324bee8e3815c.zip
Update cinnamon to 2.0. Among the changes:
- Many packages were split. New components appeared - In cinnamon-settings, the applet to configure the users has been removed. It needs python-pam, which is not in the tree yet - The translations are optional and can be enabled in x11/cinnamon - To configure cinnamon, use cinnamon-settings. The cinnamon-control-center seems to be lagging behind - The cinnamon2d, the fallback version of cinnamon, seems to be buggy and needs some love. It can be chosen with gdm in the session list - Only a subset of the nemo-extensions were enabled. More to come in the future - The JavaScripts bindings are now provided by lang/cjs (which seems to be a fork from lang/gjs) The development of cinnamon is moving fast, so if you find problems please contact gnome@freebsd.org Reviewed by: kwm git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18985 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/cinnamon-desktop/Makefile')
-rw-r--r--x11/cinnamon-desktop/Makefile56
1 files changed, 56 insertions, 0 deletions
diff --git a/x11/cinnamon-desktop/Makefile b/x11/cinnamon-desktop/Makefile
new file mode 100644
index 000000000..ee2d40bf9
--- /dev/null
+++ b/x11/cinnamon-desktop/Makefile
@@ -0,0 +1,56 @@
+# Created by: Gustau Perez i Querol <gustau.perez@gmail.com>
+# $FreeBSD$
+# $MCom$
+
+PORTNAME= cinnamon-desktop
+PORTVERSION= 2.0.4
+CATEGORIES= x11 gnome
+MASTER_SITES= http://github.com/linuxmint/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/
+DIST_SUBDIR= gnome3
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Additional UI API for cinnamon
+
+BUILD_DEPENDS= gnome-autogen.sh:${PORTSDIR}/devel/gnome-common \
+ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:${PORTSDIR}/x11/xkeyboard-config \
+ ${LOCALBASE}/libdata/pkgconfig/xkbfile.pc:${PORTSDIR}/x11/libxkbfile
+RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:${PORTSDIR}/x11/xkeyboard-config \
+ ${LOCALBASE}/libdata/pkgconfig/xkbfile.pc:${PORTSDIR}/x11/libxkbfile
+
+USE_XZ= yes
+USE_XORG= x11 xrandr xext
+USES= gettext gmake pathfix pkgconfig
+USE_GNOME= gnomeprefix gtk30 introspection:build
+USE_LDCONFIG= yes
+GNU_CONFIGURE= yes
+USE_AUTOTOOLS= libtool autoconf automake
+PATHFIX_MAKEFILEIN= Makefile.am
+CONFIGURE_ARGS= --with-gnome-distributor="FreeBSD GNOME Project"
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib
+GLIB_SCHEMAS= org.cinnamon.desktop.a11y.applications.gschema.xml \
+ org.cinnamon.desktop.a11y.keyboard.gschema.xml \
+ org.cinnamon.desktop.a11y.magnifier.gschema.xml \
+ org.cinnamon.desktop.a11y.mouse.gschema.xml \
+ org.cinnamon.desktop.background.gschema.xml \
+ org.cinnamon.desktop.default-applications.gschema.xml \
+ org.cinnamon.desktop.enums.xml \
+ org.cinnamon.desktop.input-sources.gschema.xml \
+ org.cinnamon.desktop.interface.gschema.xml \
+ org.cinnamon.desktop.lockdown.gschema.xml \
+ org.cinnamon.desktop.media-handling.gschema.xml \
+ org.cinnamon.desktop.screensaver.gschema.xml \
+ org.cinnamon.desktop.session.gschema.xml \
+ org.cinnamon.desktop.sound.gschema.xml \
+ org.cinnamon.desktop.thumbnail-cache.gschema.xml \
+ org.cinnamon.desktop.thumbnailers.gschema.xml \
+ org.cinnamon.desktop.wm.preferences.gschema.xml \
+ org.cinnamon.system.locale.gschema.xml
+
+pre-configure:
+ cd ${WRKSRC} && NOCONFIGURE=yes ${SH} ./autogen.sh
+
+post-install:
+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcinnamon-desktop.so*
+
+.include <bsd.port.mk>