From owner-svn-ports-head@FreeBSD.ORG Mon Feb 18 11:51:30 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9BB386FB; Mon, 18 Feb 2013 11:51:30 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7FFAC2AE; Mon, 18 Feb 2013 11:51:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1IBpUs7047617; Mon, 18 Feb 2013 11:51:30 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1IBpTMp047614; Mon, 18 Feb 2013 11:51:29 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201302181151.r1IBpTMp047614@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 18 Feb 2013 11:51:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312500 - head/x11-wm/e16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 11:51:30 -0000 Author: gahr Date: Mon Feb 18 11:51:29 2013 New Revision: 312500 URL: http://svnweb.freebsd.org/changeset/ports/312500 Log: - Update to 1.0.11.001 Changes: * Enable using libsndfile for sound file loading. * Focus update tweaks. * Add EventsBlock(). * Add script to place pagers (James Bowlin). * Introduce new animation engine (Daniel Manjarres). * Fix various issues reported by clang. Minor cleanups. * Fix test for XI2 availability. * Use __func__ for function names in debug stuff. * Window slide code cosmetics. * Wrap some calls to XGrab/UngrabKeyboard() + cosmetics. * Wrap XAllowEvents(). * Fix major memory leak when using XI2 events. * Cleanup around XI2 event selection. * When using XI2, handle all keyboard and pointer events via XI2. * When using XI2, handle enter/leave events via XI2. * When using XI2, handle focus change events via XI2. * Restore old pointer warping behavior on maximization. * Non-time-limited animations should not run until next ?!? * CM: Set destination clip when rendering compositing buffer to screen. * Remove long time disabled raindrops and imagespinner fx code. * No need to adjust fx on area change. * Add AnimatorDel(). * Add AnimatorGetData(). * Refactor fx. * AnimatorsDelCatAll() is now unused. * Resurrect slide shape. * Enable setting shape on multiple windows. * Remove code for shaded, semi-solid, and translucent move/resize modes. * PixImg stuff is no longer used. * Disable pseudo-transparency by default. * Add AC_CONFIG_MACRO_DIR. * Avoid warnings about uninitialised struct members. * Enable not using a container window. * Unbreak animated move/resize after recent changes. * Get frame rate from randr. * Remove obsolete ecore_x compatibility. * Add/use ecore_x_window_prop_del(). * Cosmetic change around TimersRunNextIn(). * Switch default sound support to pulseaudio/libsndfile. * Run composite rendering to screen separately from animators/idlers/ timers. Modified: head/x11-wm/e16/Makefile head/x11-wm/e16/distinfo head/x11-wm/e16/pkg-plist (contents, props changed) Modified: head/x11-wm/e16/Makefile ============================================================================== --- head/x11-wm/e16/Makefile Mon Feb 18 10:33:31 2013 (r312499) +++ head/x11-wm/e16/Makefile Mon Feb 18 11:51:29 2013 (r312500) @@ -2,32 +2,38 @@ # $FreeBSD$ PORTNAME= e16 -PORTVERSION= 1.0.11 +PORTVERSION= 1.0.11.001 CATEGORIES= x11-wm enlightenment -MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION}/ +MASTER_SITES= SF/enlightenment/${PORTNAME}/Snapshots/ MAINTAINER= gahr@FreeBSD.org COMMENT= A very artistic X window manager -OPTIONS_DEFINE= ESOUND -OPTIONS_DEFAULT=ESOUND +OPTIONS_DEFINE= SOUND +SOUND_DESC= Sound support via pulseaudio/libsndfile USE_XORG= compositeproto damageproto xextproto x11 xbitmaps xcomposite xdamage \ xext xfixes xft xinerama xrandr xrender xxf86vm USE_ICONV= yes +USE_GETTEXT= yes USE_GMAKE= yes USE_EFL= imlib2 USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-esdtest --disable-dependency-tracking \ +CONFIGURE_ARGS= --disable-dependency-tracking \ --disable-rpath --enable-mans SHELL=/bin/sh .include -.if ${PORT_OPTIONS:MESOUND} -USE_GNOME= esound +.if ${PORT_OPTIONS:MSOUND} +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio \ + sndfile:${PORTSDIR}/audio/libsndfile +CONFIGURE_ARGS+=--enable-sound \ + --enable-sound-pulse \ + --with-sndldr=sndfile .else -CONFIGURE_ARGS+=--disable-sound +CONFIGURE_ARGS+=--disable-sound \ + --with-sndldr=none .endif .if ${PORT_OPTIONS:MNLS} Modified: head/x11-wm/e16/distinfo ============================================================================== --- head/x11-wm/e16/distinfo Mon Feb 18 10:33:31 2013 (r312499) +++ head/x11-wm/e16/distinfo Mon Feb 18 11:51:29 2013 (r312500) @@ -1,2 +1,2 @@ -SHA256 (e16-1.0.11.tar.gz) = c7bc9fed4a83d2791df2acd6aa9e710cc162f2b54312c834f41940fb60a1f13e -SIZE (e16-1.0.11.tar.gz) = 2281672 +SHA256 (e16-1.0.11.001.tar.gz) = 1b3dbd10ca78a85740b049c2b2b61f1cedca99aa5dc9ffb088cbcbe29f6c5351 +SIZE (e16-1.0.11.001.tar.gz) = 2296210 Modified: head/x11-wm/e16/pkg-plist ============================================================================== --- head/x11-wm/e16/pkg-plist Mon Feb 18 10:33:31 2013 (r312499) +++ head/x11-wm/e16/pkg-plist Mon Feb 18 11:51:29 2013 (r312500) @@ -381,7 +381,6 @@ share/xsessions/e16-gnome3-session.deskt %%NLS%%share/locale/bg/LC_MESSAGES/e16.mo %%NLS%%share/locale/bs/LC_MESSAGES/e16.mo %%NLS%%share/locale/cs/LC_MESSAGES/e16.mo -%%NLS%%share/locale/csb/LC_MESSAGES/e16.mo %%NLS%%share/locale/da/LC_MESSAGES/e16.mo %%NLS%%share/locale/de/LC_MESSAGES/e16.mo %%NLS%%share/locale/en_US/LC_MESSAGES/e16.mo @@ -472,8 +471,6 @@ share/xsessions/e16-gnome3-session.deskt @dirrmtry %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry share/xsessions -@dirrmtry share/locale/csb/LC_MESSAGES -@dirrmtry share/locale/csb @dirrmtry share/locale/en_US/LC_MESSAGES @dirrmtry share/locale/en_US @dirrmtry share/locale/fo/LC_MESSAGES