Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Feb 2019 09:21:52 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492352 - in head/x11-wm: . aphelia
Message-ID:  <201902070921.x179LqNK097818@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <hyun@caffeinated.codes>

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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902070921.x179LqNK097818>