From owner-svn-ports-head@FreeBSD.ORG Wed Oct 30 05:34:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8B463B11; Wed, 30 Oct 2013 05:34:41 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6A14F2502; Wed, 30 Oct 2013 05:34:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9U5YfQt025418; Wed, 30 Oct 2013 05:34:41 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9U5YeWi025414; Wed, 30 Oct 2013 05:34:40 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201310300534.r9U5YeWi025414@svn.freebsd.org> From: Olivier Duchateau Date: Wed, 30 Oct 2013 05:34:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332068 - in head/x11/xfce4-whiskermenu-plugin: . files 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: Wed, 30 Oct 2013 05:34:41 -0000 Author: olivierd Date: Wed Oct 30 05:34:40 2013 New Revision: 332068 URL: http://svnweb.freebsd.org/changeset/ports/332068 Log: - Update to 1.2.0 - Add LICENSE blob - Support STAGEDIR Added: head/x11/xfce4-whiskermenu-plugin/files/ head/x11/xfce4-whiskermenu-plugin/files/patch-CMakeLists.txt (contents, props changed) Modified: head/x11/xfce4-whiskermenu-plugin/Makefile head/x11/xfce4-whiskermenu-plugin/distinfo head/x11/xfce4-whiskermenu-plugin/pkg-plist Modified: head/x11/xfce4-whiskermenu-plugin/Makefile ============================================================================== --- head/x11/xfce4-whiskermenu-plugin/Makefile Wed Oct 30 05:26:42 2013 (r332067) +++ head/x11/xfce4-whiskermenu-plugin/Makefile Wed Oct 30 05:34:40 2013 (r332068) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-whiskermenu-plugin -PORTVERSION= 1.1.1 +PORTVERSION= 1.2.0 CATEGORIES= x11 xfce MASTER_SITES= http://gottcode.org/${PORTNAME}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -11,6 +11,8 @@ DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org COMMENT= Alternate menu for the Xfce Desktop +LICENSE= GPLv2 + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_BZIP2= yes @@ -22,5 +24,4 @@ INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes .include Modified: head/x11/xfce4-whiskermenu-plugin/distinfo ============================================================================== --- head/x11/xfce4-whiskermenu-plugin/distinfo Wed Oct 30 05:26:42 2013 (r332067) +++ head/x11/xfce4-whiskermenu-plugin/distinfo Wed Oct 30 05:34:40 2013 (r332068) @@ -1,2 +1,2 @@ -SHA256 (xfce4/xfce4-whiskermenu-plugin-1.1.1-src.tar.bz2) = cfb86e9604c58a4657149950bfb693600a364ce4d64e4100c72bda489385dead -SIZE (xfce4/xfce4-whiskermenu-plugin-1.1.1-src.tar.bz2) = 91002 +SHA256 (xfce4/xfce4-whiskermenu-plugin-1.2.0-src.tar.bz2) = 71e75c2cff3ec0df001cef628e77904fd45dfba3f788c6aa2be19273df91208e +SIZE (xfce4/xfce4-whiskermenu-plugin-1.2.0-src.tar.bz2) = 103112 Added: head/x11/xfce4-whiskermenu-plugin/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xfce4-whiskermenu-plugin/files/patch-CMakeLists.txt Wed Oct 30 05:34:40 2013 (r332068) @@ -0,0 +1,14 @@ +--- ./CMakeLists.txt.orig 2013-10-29 18:29:33.000000000 +0000 ++++ ./CMakeLists.txt 2013-10-29 23:51:59.000000000 +0000 +@@ -11,6 +11,11 @@ + + include(GNUInstallDirs) + ++if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") ++ unset(CMAKE_INSTALL_MANDIR) ++ set(CMAKE_INSTALL_MANDIR ${CMAKE_INSTALL_PREFIX}/man) ++endif() ++ + add_subdirectory(src) + add_subdirectory(po) + add_subdirectory(icons) Modified: head/x11/xfce4-whiskermenu-plugin/pkg-plist ============================================================================== --- head/x11/xfce4-whiskermenu-plugin/pkg-plist Wed Oct 30 05:26:42 2013 (r332067) +++ head/x11/xfce4-whiskermenu-plugin/pkg-plist Wed Oct 30 05:34:40 2013 (r332068) @@ -1,5 +1,6 @@ bin/xfce4-popup-whiskermenu lib/xfce4/panel/plugins/libwhiskermenu.so +man/man1/xfce4-popup-whiskermenu.1.gz share/icons/hicolor/128x128/apps/xfce4-whiskermenu.png share/icons/hicolor/16x16/apps/xfce4-whiskermenu.png share/icons/hicolor/22x22/apps/xfce4-whiskermenu.png @@ -12,13 +13,17 @@ share/icons/hicolor/scalable/apps/xfce4- share/locale/ar/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/bg/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/ca/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/cs/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/da/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/de/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/el/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/en_GB/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/es/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/et/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/fi/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/fr/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/he/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/hr/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/hu/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/id/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/it/LC_MESSAGES/xfce4-whiskermenu-plugin.mo @@ -33,13 +38,20 @@ share/locale/pt_BR/LC_MESSAGES/xfce4-whi share/locale/ro/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/ru/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/sk/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/sr@latin/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/sv/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/tr/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/uk/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +share/locale/uz/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/locale/vi/LC_MESSAGES/xfce4-whiskermenu-plugin.mo share/xfce4/panel/plugins/whiskermenu.desktop @dirrmtry share/xfce4/panel/plugins @dirrmtry share/xfce4/panel @dirrmtry share/xfce4 +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/kk/LC_MESSAGES +@dirrmtry share/locale/kk @dirrmtry lib/xfce4/panel/plugins @dirrmtry lib/xfce4/panel @dirrmtry lib/xfce4