--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>matthias.gerstner@nefkom.net</email>
+ <name>Matthias Gerstner</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription lang="en">
+ This is xwmfs (X window manager file system), a userspace file system based on
+ fuse that allows interaction with an EWMH compliant X11 window manager
+ via files.
+
+ Some of its features are:
+
+ - newly appearing and disappearing windows in the X server are recognized and
+ the file system is updated in an event based manner
+ - new values for properties of window manager and windows will be reflected in
+ the file system in an event based manner
+ - properties of windows and window manager can be changed via writing to files
+ in the file system
+ - some X operations are accessible via control files in the file system
+
+ The file system can be used for easily implementing scripts that operate on
+ the window manager and windows (for example identifying specific windows,
+ rename a window, move it around and so on).
+ </longdescription>
+ <upstream>
+ <remote-id type="github">gestner-hub/xwmfs</remote-id>
+ </upstream>
+</pkgmetadata>
--- /dev/null
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="FUSE-based X11 Window-Manager file system"
+HOMEPAGE="https://github.com/gerstner-hub/xwmfs"
+SRC_URI="https://github.com/gerstner-hub/${PN}/releases/download/v${PV}/${P}-dist.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~arm"
+SLOT="0"
+
+RDEPEND="
+ sys-fs/fuse:=
+ >=x11-libs/libX11-1.6.5"
+
+DEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig"