From owner-svn-ports-head@freebsd.org Wed Mar 16 10:23:15 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D7BEAD3316; Wed, 16 Mar 2016 10:23:15 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 386736B8; Wed, 16 Mar 2016 10:23:15 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2GANEv1020632; Wed, 16 Mar 2016 10:23:14 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2GANEu4020627; Wed, 16 Mar 2016 10:23:14 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201603161023.u2GANEu4020627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 16 Mar 2016 10:23:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411219 - head/x11-wm/oroborus 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.21 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, 16 Mar 2016 10:23:15 -0000 Author: danfe Date: Wed Mar 16 10:23:13 2016 New Revision: 411219 URL: https://svnweb.freebsd.org/changeset/ports/411219 Log: - Update to version 2.0.20 and provide working master sites - Define LICENSE (GPLv2) and no longer require GNU make(1) - Install some documentation and a sample configuration file - Amend features and project URL in port description text Modified: head/x11-wm/oroborus/Makefile head/x11-wm/oroborus/distinfo head/x11-wm/oroborus/pkg-descr head/x11-wm/oroborus/pkg-plist Modified: head/x11-wm/oroborus/Makefile ============================================================================== --- head/x11-wm/oroborus/Makefile Wed Mar 16 09:43:15 2016 (r411218) +++ head/x11-wm/oroborus/Makefile Wed Mar 16 10:23:13 2016 (r411219) @@ -2,20 +2,31 @@ # $FreeBSD$ PORTNAME= oroborus -PORTVERSION= 2.0.18 -PORTREVISION= 1 +PORTVERSION= 2.0.20 CATEGORIES= x11-wm -MASTER_SITES= http://www.oroborus.org/debian/dists/sid/main/source/x11/ \ - http://matt.peterson.org/FreeBSD/ports/ +MASTER_SITES= DEBIAN/pool/main/o/${PORTNAME} GENTOO DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= matt@peterson.org COMMENT= Small and simple GNOME-compatible window manager -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +LICENSE= GPLv2 -USE_XORG= xpm -USES= gmake GNU_CONFIGURE= yes +USE_XORG= xpm + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +PORTDOCS= AUTHORS ChangeLog README TODO + +OPTIONS_DEFINE= DOCS + +post-install: + ${INSTALL_DATA} ${WRKSRC}/example.oroborusrc \ + ${STAGEDIR}${ETCDIR}rc.sample + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include Modified: head/x11-wm/oroborus/distinfo ============================================================================== --- head/x11-wm/oroborus/distinfo Wed Mar 16 09:43:15 2016 (r411218) +++ head/x11-wm/oroborus/distinfo Wed Mar 16 10:23:13 2016 (r411219) @@ -1,2 +1,2 @@ -SHA256 (oroborus_2.0.18.tar.gz) = f2fe8a76f6b3136119b1d8d9c2b0776d8e6f4483f2451ab18f3b09d32f611242 -SIZE (oroborus_2.0.18.tar.gz) = 671465 +SHA256 (oroborus_2.0.20.tar.gz) = 5220a540bcf6812c6773fbe583d9ea3f54f452cbac55bedcaadeba8c3a9a7b89 +SIZE (oroborus_2.0.20.tar.gz) = 335099 Modified: head/x11-wm/oroborus/pkg-descr ============================================================================== --- head/x11-wm/oroborus/pkg-descr Wed Mar 16 09:43:15 2016 (r411218) +++ head/x11-wm/oroborus/pkg-descr Wed Mar 16 10:23:13 2016 (r411219) @@ -1,13 +1,17 @@ -Oroborus is a small and simple window manager for X which has the following -features: +Oroborus is a small and simple window manager for X11 which has the +following features: - o Themeable appearance - o Virtual desktops - o Full keyboard control - o Works with GNOME + - Good default key bindings + - Windows are moveable by keyboard + - Highly configurable + - XPM-themable + - GNOME compatible + - NET_WM compatible + - Sort of KDE compatible + - And many, many more... Oroborus doesn't provide any kind of dock, toolbar, program launcher, -background changer or root menu as these functions can be provided by separate -applications. +background changer or root menu as these functions can be provided by +separate applications. -WWW: http://www.dreamind.de/oroborus.shtml +WWW: http://www.oroborus.org/ Modified: head/x11-wm/oroborus/pkg-plist ============================================================================== --- head/x11-wm/oroborus/pkg-plist Wed Mar 16 09:43:15 2016 (r411218) +++ head/x11-wm/oroborus/pkg-plist Wed Mar 16 10:23:13 2016 (r411219) @@ -1,4 +1,5 @@ bin/oroborus +@sample etc/oroborusrc.sample %%DATADIR%%/defaults %%DATADIR%%/schemes/beos %%DATADIR%%/schemes/blue