import echinus 0.4.5
Echinus supports managing window in floating, tiled and maximized layouts. All the configuration is made via config file in Xresources format. Echinus supports a small subset of EWMH to be compatible with external panels and pagers. The goal of development is a small, fast window manager without features not strictly related to window management. from Alexander Polakov (MAINTAINER) ok sthen@
This commit is contained in:
parent
6b8fba1e75
commit
4ed6cd0b12
34
x11/echinus/Makefile
Normal file
34
x11/echinus/Makefile
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# $OpenBSD: Makefile,v 1.1.1.1 2011/03/22 08:11:05 jasper Exp $
|
||||||
|
|
||||||
|
COMMENT= simple, lightweight tiling and floating window manager
|
||||||
|
|
||||||
|
DISTNAME= echinus-0.4.5
|
||||||
|
|
||||||
|
CATEGORIES= x11
|
||||||
|
|
||||||
|
HOMEPAGE= http://plhk.ru/
|
||||||
|
|
||||||
|
MAINTAINER= Alexander Polakov <polachok@gmail.com>
|
||||||
|
|
||||||
|
# MIT/X
|
||||||
|
PERMIT_PACKAGE_CDROM= Yes
|
||||||
|
PERMIT_PACKAGE_FTP= Yes
|
||||||
|
PERMIT_DISTFILES_CDROM= Yes
|
||||||
|
PERMIT_DISTFILES_FTP= Yes
|
||||||
|
|
||||||
|
WANTLIB += X11 Xau Xdmcp Xft Xrandr Xrender c expat fontconfig
|
||||||
|
WANTLIB += freetype pthread-stubs xcb z
|
||||||
|
|
||||||
|
MASTER_SITES= ${HOMEPAGE}/static/echinus/
|
||||||
|
|
||||||
|
MAKE_ENV= BINPREFIX="${LOCALBASE}/bin"
|
||||||
|
MAKE_ENV+= MANPREFIX="${LOCALBASE}/man"
|
||||||
|
MAKE_ENV+= DOCPREFIX="${LOCALBASE}/share/doc"
|
||||||
|
MAKE_ENV+= CONFPREFIX="${LOCALBASE}/share/examples"
|
||||||
|
MAKE_ENV+= CONF="${SYSCONFDIR}/xdg/echinus"
|
||||||
|
MAKE_ENV+= CLFAGS_EXTRA="${CFLAGS}"
|
||||||
|
MAKE_ENV+= CC="${CC}"
|
||||||
|
|
||||||
|
NO_REGRESS= Yes
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
5
x11/echinus/distinfo
Normal file
5
x11/echinus/distinfo
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
MD5 (echinus-0.4.5.tar.gz) = xvr2p+nO33q5W0SrBMKkOg==
|
||||||
|
RMD160 (echinus-0.4.5.tar.gz) = 7tXJha9SieJodOqHhdw4M4Sqohs=
|
||||||
|
SHA1 (echinus-0.4.5.tar.gz) = uS4uLjUzTG18DsFhOOGOpuQIapw=
|
||||||
|
SHA256 (echinus-0.4.5.tar.gz) = i738OmbGtcZn0cpD/zLD58Slsq9nau9Y8repwsR5IBs=
|
||||||
|
SIZE (echinus-0.4.5.tar.gz) = 32275
|
19
x11/echinus/patches/patch-Makefile
Normal file
19
x11/echinus/patches/patch-Makefile
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
$OpenBSD: patch-Makefile,v 1.1.1.1 2011/03/22 08:11:05 jasper Exp $
|
||||||
|
--- Makefile.orig Thu Mar 17 17:03:41 2011
|
||||||
|
+++ Makefile Thu Mar 17 17:03:52 2011
|
||||||
|
@@ -19,13 +19,13 @@ options:
|
||||||
|
|
||||||
|
.c.o:
|
||||||
|
@echo CC $<
|
||||||
|
- @${CC} -c ${CFLAGS} $<
|
||||||
|
+ ${CC} -c ${CFLAGS} $<
|
||||||
|
|
||||||
|
${OBJ}: config.mk
|
||||||
|
|
||||||
|
echinus: ${OBJ} ${FILES}
|
||||||
|
@echo CC -o $@
|
||||||
|
- @${CC} -o $@ ${OBJ} ${LDFLAGS}
|
||||||
|
+ ${CC} -o $@ ${OBJ} ${LDFLAGS}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo cleaning
|
12
x11/echinus/patches/patch-config_mk
Normal file
12
x11/echinus/patches/patch-config_mk
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
$OpenBSD: patch-config_mk,v 1.1.1.1 2011/03/22 08:11:05 jasper Exp $
|
||||||
|
--- config.mk.orig Thu Mar 17 17:05:23 2011
|
||||||
|
+++ config.mk Thu Mar 17 17:05:33 2011
|
||||||
|
@@ -21,7 +21,7 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --
|
||||||
|
DEFS = -DVERSION=\"${VERSION}\" -DSYSCONFPATH=\"${CONF}\"
|
||||||
|
|
||||||
|
# flags
|
||||||
|
-CFLAGS = -Os ${INCS} ${DEFS}
|
||||||
|
+CFLAGS = -Os ${INCS} ${DEFS} ${CLFAGS_EXTRA}
|
||||||
|
LDFLAGS = -s ${LIBS}
|
||||||
|
# debug flags
|
||||||
|
#CFLAGS = -g3 -ggdb3 -std=c99 -pedantic -O0 ${INCS} -DDEBUG ${DEFS}
|
6
x11/echinus/pkg/DESCR
Normal file
6
x11/echinus/pkg/DESCR
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Echinus supports managing window in floating, tiled and maximized
|
||||||
|
layouts. All the configuration is made via config file in Xresources
|
||||||
|
format. Echinus supports a small subset of EWMH to be compatible with
|
||||||
|
external panels and pagers. The goal of development is a small, fast
|
||||||
|
window manager without features not strictly related to window
|
||||||
|
management.
|
16
x11/echinus/pkg/PLIST
Normal file
16
x11/echinus/pkg/PLIST
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/03/22 08:11:05 jasper Exp $
|
||||||
|
@bin bin/echinus
|
||||||
|
@man man/man1/echinus.1
|
||||||
|
share/doc/echinus/
|
||||||
|
share/doc/echinus/README
|
||||||
|
share/examples/echinus/
|
||||||
|
@sample ${SYSCONFDIR}/xdg/
|
||||||
|
@sample ${SYSCONFDIR}/xdg/echinus/
|
||||||
|
share/examples/echinus/close.xbm
|
||||||
|
@sample ${SYSCONFDIR}/xdg/echinus/close.xbm
|
||||||
|
share/examples/echinus/echinusrc
|
||||||
|
@sample ${SYSCONFDIR}/xdg/echinus/echinusrc
|
||||||
|
share/examples/echinus/iconify.xbm
|
||||||
|
@sample ${SYSCONFDIR}/xdg/echinus/iconify.xbm
|
||||||
|
share/examples/echinus/max.xbm
|
||||||
|
@sample ${SYSCONFDIR}/xdg/echinus/max.xbm
|
Loading…
Reference in New Issue
Block a user