From owner-svn-ports-all@freebsd.org Thu Feb 7 09:21:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93F8C14D11EC; Thu, 7 Feb 2019 09:21:53 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39236776A8; Thu, 7 Feb 2019 09:21:53 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0EF41AE91; Thu, 7 Feb 2019 09:21:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x179LqJx097822; Thu, 7 Feb 2019 09:21:52 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x179LqNK097818; Thu, 7 Feb 2019 09:21:52 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201902070921.x179LqNK097818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 7 Feb 2019 09:21:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492352 - in head/x11-wm: . aphelia X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/x11-wm: . aphelia X-SVN-Commit-Revision: 492352 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 39236776A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 07 Feb 2019 09:21:53 -0000 Author: tobik Date: Thu Feb 7 09:21:51 2019 New Revision: 492352 URL: https://svnweb.freebsd.org/changeset/ports/492352 Log: New port: x11-wm/aphelia A light, single-file, minimalist window manager for X11. This window manager is single-file and a super small binary with low resource consumption. Personally, I find it's useful for focused work where you aren't moving around too much and don't need multiple workspaces (it doesn't support them, obviously). WWW: https://github.com/vardy/aphelia PR: 233365 Submitted by: Hyun Hwang Added: head/x11-wm/aphelia/ head/x11-wm/aphelia/Makefile (contents, props changed) head/x11-wm/aphelia/distinfo (contents, props changed) head/x11-wm/aphelia/pkg-descr (contents, props changed) Modified: head/x11-wm/Makefile Modified: head/x11-wm/Makefile ============================================================================== --- head/x11-wm/Makefile Thu Feb 7 09:07:01 2019 (r492351) +++ head/x11-wm/Makefile Thu Feb 7 09:21:51 2019 (r492352) @@ -8,6 +8,7 @@ SUBDIR += afterstep-stable SUBDIR += amiwm SUBDIR += antiwm + SUBDIR += aphelia SUBDIR += awesome SUBDIR += awesome-vicious SUBDIR += bbkeys Added: head/x11-wm/aphelia/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/aphelia/Makefile Thu Feb 7 09:21:51 2019 (r492352) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= aphelia +DISTVERSION= g20181126 +CATEGORIES= x11-wm + +MAINTAINER= hyun@caffeinated.codes +COMMENT= Light, single-file, minimalist window manager for X11 + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= dmenu_run:x11/dmenu \ + st:x11/sterm + +USE_GITHUB= yes +GH_ACCOUNT= vardy +GH_TAGNAME= 54c2d6fb18f3121ebaf836fad53ca48a2f3aa812 +USE_XORG= x11 + +PLIST_FILES= bin/aphelia + +do-build: + ${CC} ${CFLAGS} -I${LOCALBASE}/include ${WRKSRC}/aphelia.c \ + ${LDFLAGS} -L${LOCALBASE}/lib -lX11 -o ${WRKSRC}/aphelia + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/aphelia ${STAGEDIR}${PREFIX}/bin/aphelia + +.include Added: head/x11-wm/aphelia/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/aphelia/distinfo Thu Feb 7 09:21:51 2019 (r492352) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544105783 +SHA256 (vardy-aphelia-g20181126-54c2d6fb18f3121ebaf836fad53ca48a2f3aa812_GH0.tar.gz) = 539f60c7a2d9169fbff8a5f30468b53f2b5ba3aabc32a4213c63124dc3f971e3 +SIZE (vardy-aphelia-g20181126-54c2d6fb18f3121ebaf836fad53ca48a2f3aa812_GH0.tar.gz) = 2785 Added: head/x11-wm/aphelia/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/aphelia/pkg-descr Thu Feb 7 09:21:51 2019 (r492352) @@ -0,0 +1,8 @@ +A light, single-file, minimalist window manager for X11. + +This window manager is single-file and a super small binary with low +resource consumption. Personally, I find it's useful for focused work +where you aren't moving around too much and don't need multiple +workspaces (it doesn't support them, obviously). + +WWW: https://github.com/vardy/aphelia