From owner-svn-ports-all@FreeBSD.ORG Tue Jun 3 04:49:05 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 7551D57F; Tue, 3 Jun 2014 04:49:05 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60F2F29D9; Tue, 3 Jun 2014 04:49:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s534n52n036269; Tue, 3 Jun 2014 04:49:05 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s534n2R8036243; Tue, 3 Jun 2014 04:49:02 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201406030449.s534n2R8036243@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 3 Jun 2014 04:49:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356282 - in head/x11-themes: gtk-aquaextremesunken-theme gtk-digital-cream-theme gtk-digital-harmony-theme gtk-longhorninspirat-theme gtk-milk-theme metacity-aquaextremesunken-theme me... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jun 2014 04:49:05 -0000 Author: danfe Date: Tue Jun 3 04:49:02 2014 New Revision: 356282 URL: http://svnweb.freebsd.org/changeset/ports/356282 QAT: https://qat.redports.org/buildarchive/r356282/ Log: Stagify and cleanup my remaining ports under Modified: head/x11-themes/gtk-aquaextremesunken-theme/Makefile head/x11-themes/gtk-aquaextremesunken-theme/pkg-descr head/x11-themes/gtk-digital-cream-theme/Makefile head/x11-themes/gtk-digital-cream-theme/pkg-descr head/x11-themes/gtk-digital-harmony-theme/Makefile head/x11-themes/gtk-digital-harmony-theme/pkg-descr head/x11-themes/gtk-longhorninspirat-theme/Makefile head/x11-themes/gtk-longhorninspirat-theme/pkg-descr head/x11-themes/gtk-milk-theme/Makefile head/x11-themes/gtk-milk-theme/pkg-descr head/x11-themes/metacity-aquaextremesunken-theme/Makefile head/x11-themes/metacity-digital-cream-theme/Makefile head/x11-themes/metacity-digital-harmony-theme/Makefile head/x11-themes/metacity-longhorninspirat-theme/Makefile Modified: head/x11-themes/gtk-aquaextremesunken-theme/Makefile ============================================================================== --- head/x11-themes/gtk-aquaextremesunken-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-aquaextremesunken-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -11,15 +11,14 @@ PKGNAMESUFFIX= -theme DISTNAME= AquaExtremeSunken MAINTAINER= danfe@FreeBSD.org -COMMENT= A port of AquaExtreme Sunken theme +COMMENT= Port of AquaExtreme Sunken theme -TYPE?= gtk +NO_BUILD= yes +TYPE?= gtk THEME_NAME= ${DISTNAME} -NO_BUILD= yes - -.if ${TYPE} == "gtk" +.if ${TYPE} == gtk THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME} PLIST_SUB+= GTK20="" METACITY="@comment " USE_GNOME= gtk20 @@ -29,16 +28,15 @@ PLIST_SUB+= GTK20="@comment " METACITY=" USE_GNOME= gnomehier .endif -NO_STAGE= yes do-install: - @${MKDIR} ${THEME_DIR} -.if ${TYPE} == "gtk" + @${MKDIR} ${STAGEDIR}${THEME_DIR} +.if ${TYPE} == gtk cd ${WRKSRC} && ${FIND} gtk-2.0 | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} - ${INSTALL_DATA} ${WRKSRC}/index.theme ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} + ${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR} .else cd ${WRKSRC} && ${FIND} metacity-1 | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .endif .include Modified: head/x11-themes/gtk-aquaextremesunken-theme/pkg-descr ============================================================================== --- head/x11-themes/gtk-aquaextremesunken-theme/pkg-descr Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-aquaextremesunken-theme/pkg-descr Tue Jun 3 04:49:02 2014 (r356282) @@ -1,4 +1,2 @@ -Port of AquaExtreme Sunken theme. Original work by Max Rudberg -(http://www.maxthemes.com). - -WWW: http://www.users.monornet.hu/linux/ +Port of AquaExtreme Sunken theme. Original theme created by Max Rudberg +(http://www.maxrudberg.com/). Modified: head/x11-themes/gtk-digital-cream-theme/Makefile ============================================================================== --- head/x11-themes/gtk-digital-cream-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-digital-cream-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -11,16 +11,15 @@ PKGNAMESUFFIX= -theme DISTNAME= Digital-Cream MAINTAINER= danfe@FreeBSD.org -COMMENT= Very neat and clean theme for GNOME desktop +COMMENT= Neat and clean theme for GNOME desktop -TYPE?= gtk +USES= tar:bzip2 +NO_BUILD= yes +TYPE?= gtk THEME_NAME= ${DISTNAME} -USE_BZIP2= yes -NO_BUILD= yes - -.if ${TYPE} == "gtk" +.if ${TYPE} == gtk THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME} PLIST_SUB+= GTK20="" METACITY="@comment " USE_GNOME= gtk20 @@ -30,19 +29,18 @@ PLIST_SUB+= GTK20="@comment " METACITY=" USE_GNOME= gnomehier .endif -NO_STAGE= yes post-extract: @${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 do-install: - @${MKDIR} ${THEME_DIR} - ${INSTALL_DATA} ${WRKSRC}/index.theme ${THEME_DIR} -.if ${TYPE} == "gtk" + @${MKDIR} ${STAGEDIR}${THEME_DIR} + ${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR} +.if ${TYPE} == gtk cd ${WRKSRC} && ${FIND} gtk-2.0 -name '*[^~]' | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .else cd ${WRKSRC} && ${FIND} metacity-1 -name '*[^~]' | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .endif .include Modified: head/x11-themes/gtk-digital-cream-theme/pkg-descr ============================================================================== --- head/x11-themes/gtk-digital-cream-theme/pkg-descr Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-digital-cream-theme/pkg-descr Tue Jun 3 04:49:02 2014 (r356282) @@ -1,3 +1 @@ Neat and clean theme for GNOME desktop by roberTO. - -WWW: http://www.users.monornet.hu/linux/ Modified: head/x11-themes/gtk-digital-harmony-theme/Makefile ============================================================================== --- head/x11-themes/gtk-digital-harmony-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-digital-harmony-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -13,13 +13,12 @@ DISTNAME= Digital-Harmony MAINTAINER= danfe@FreeBSD.org COMMENT= Another popular theme for GNOME desktop -TYPE?= gtk +NO_BUILD= yes +TYPE?= gtk THEME_NAME= ${DISTNAME} -NO_BUILD= yes - -.if ${TYPE} == "gtk" +.if ${TYPE} == gtk THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME} PLIST_SUB+= GTK20="" METACITY="@comment " USE_GNOME= gtk20 @@ -29,21 +28,20 @@ PLIST_SUB+= GTK20="@comment " METACITY=" USE_GNOME= gnomehier .endif -NO_STAGE= yes post-extract: @${RM} -rf ${WRKSRC}/gtk-2.0/Scrollbars/Backup \ ${WRKSRC}/gtk-2.0/ReadME.txt @${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 do-install: - @${MKDIR} ${THEME_DIR} - ${INSTALL_DATA} ${WRKSRC}/index.theme ${THEME_DIR} -.if ${TYPE} == "gtk" + @${MKDIR} ${STAGEDIR}${THEME_DIR} + ${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR} +.if ${TYPE} == gtk cd ${WRKSRC} && ${FIND} gtk-2.0 | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .else cd ${WRKSRC} && ${FIND} metacity-1 | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .endif .include Modified: head/x11-themes/gtk-digital-harmony-theme/pkg-descr ============================================================================== --- head/x11-themes/gtk-digital-harmony-theme/pkg-descr Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-digital-harmony-theme/pkg-descr Tue Jun 3 04:49:02 2014 (r356282) @@ -1,3 +1 @@ This is yet another popular GNOME desktop theme by roberTO. - -WWW: http://www.users.monornet.hu/linux/ Modified: head/x11-themes/gtk-longhorninspirat-theme/Makefile ============================================================================== --- head/x11-themes/gtk-longhorninspirat-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-longhorninspirat-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -11,17 +11,16 @@ PKGNAMESUFFIX= -theme DISTNAME= Longhorn_Inspirat MAINTAINER= danfe@FreeBSD.org -COMMENT= A port of Windows XP theme Longhorn Inspirat +COMMENT= Port of Windows XP theme Longhorn Inspirat -TYPE?= gtk +USES= tar:bzip2 +NO_BUILD= yes +TYPE?= gtk THEME_NAME= "${DISTNAME:S/_/ /}" WRKSRC= ${WRKDIR}/${THEME_NAME} -USE_BZIP2= yes -NO_BUILD= yes - -.if ${TYPE} == "gtk" +.if ${TYPE} == gtk THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME} PLIST_SUB+= GTK20="" METACITY="@comment " USE_GNOME= gtk20 @@ -31,20 +30,19 @@ PLIST_SUB+= GTK20="@comment " METACITY=" USE_GNOME= gnomehier .endif -NO_STAGE= yes post-extract: @${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 @${RM} -r ${WRKSRC}/gtk-2.0/.Trash-roberto do-install: - @${MKDIR} ${THEME_DIR} - ${INSTALL_DATA} ${WRKSRC}/index.theme ${THEME_DIR} -.if ${TYPE} == "gtk" + @${MKDIR} ${STAGEDIR}${THEME_DIR} + ${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR} +.if ${TYPE} == gtk cd ${WRKSRC} && ${FIND} gtk-2.0 | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .else cd ${WRKSRC} && ${FIND} metacity-1 | \ - ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR} .endif .include Modified: head/x11-themes/gtk-longhorninspirat-theme/pkg-descr ============================================================================== --- head/x11-themes/gtk-longhorninspirat-theme/pkg-descr Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-longhorninspirat-theme/pkg-descr Tue Jun 3 04:49:02 2014 (r356282) @@ -1,4 +1,2 @@ Port of Longhorn Inspirat theme, originally created by Stefanka for Windows XP. - -WWW: http://www.users.monornet.hu/linux/ Modified: head/x11-themes/gtk-milk-theme/Makefile ============================================================================== --- head/x11-themes/gtk-milk-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-milk-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -12,16 +12,15 @@ PKGNAMESUFFIX= -theme DISTNAME= Milk-${PORTVERSION} MAINTAINER= danfe@FreeBSD.org -COMMENT= A port of Milk, Mac OS X theme - -TYPE?= gtk - -THEME_NAME= Milk +COMMENT= Port of Milk, Mac OS X theme USES= tar:bzip2 NO_BUILD= yes -.if ${TYPE} == "gtk" +TYPE?= gtk +THEME_NAME= Milk + +.if ${TYPE} == gtk THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME} PLIST_SUB+= GTK20="" METACITY="@comment " USE_GNOME= gtk20 @@ -37,7 +36,7 @@ post-extract: do-install: @${MKDIR} ${STAGEDIR}${THEME_DIR} ${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR} -.if ${TYPE} == "gtk" +.if ${TYPE} == gtk cd ${WRKSRC} && ${COPYTREE_SHARE} gtk-2.0 ${STAGEDIR}${THEME_DIR} .else cd ${WRKSRC} && ${COPYTREE_SHARE} metacity-1 ${STAGEDIR}${THEME_DIR} Modified: head/x11-themes/gtk-milk-theme/pkg-descr ============================================================================== --- head/x11-themes/gtk-milk-theme/pkg-descr Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/gtk-milk-theme/pkg-descr Tue Jun 3 04:49:02 2014 (r356282) @@ -1,4 +1,2 @@ -Port of a Milk, Mac OS X theme originally made by Max Rudberg -(http://www.maxthemes.com). - -WWW: http://www.users.monornet.hu/linux/ +Port of a Milk, Mac OS X theme originally created by Max Rudberg +(http://www.maxrudberg.com/). Modified: head/x11-themes/metacity-aquaextremesunken-theme/Makefile ============================================================================== --- head/x11-themes/metacity-aquaextremesunken-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/metacity-aquaextremesunken-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -4,5 +4,4 @@ TYPE= metacity MASTERDIR= ${.CURDIR}/../gtk-aquaextremesunken-theme -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/x11-themes/metacity-digital-cream-theme/Makefile ============================================================================== --- head/x11-themes/metacity-digital-cream-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/metacity-digital-cream-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -4,5 +4,4 @@ TYPE= metacity MASTERDIR= ${.CURDIR}/../gtk-digital-cream-theme -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/x11-themes/metacity-digital-harmony-theme/Makefile ============================================================================== --- head/x11-themes/metacity-digital-harmony-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/metacity-digital-harmony-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -4,5 +4,4 @@ TYPE= metacity MASTERDIR= ${.CURDIR}/../gtk-digital-harmony-theme -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/x11-themes/metacity-longhorninspirat-theme/Makefile ============================================================================== --- head/x11-themes/metacity-longhorninspirat-theme/Makefile Tue Jun 3 04:25:38 2014 (r356281) +++ head/x11-themes/metacity-longhorninspirat-theme/Makefile Tue Jun 3 04:49:02 2014 (r356282) @@ -4,5 +4,4 @@ TYPE= metacity MASTERDIR= ${.CURDIR}/../gtk-longhorninspirat-theme -NO_STAGE= yes .include "${MASTERDIR}/Makefile"