mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
9d04503ce0
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 (menus, panels, etc.) WWW: http://rootshell.be/~polachok/code/ PR: ports/126238 Submitted by: Henrik Friedrichsen <hrkfrd@googlemail.com>
44 lines
982 B
Makefile
44 lines
982 B
Makefile
# New ports collection makefile for: echinus
|
|
# Date created: 04 August 2008
|
|
# Whom: hrkfrd@gmail.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= echinus
|
|
PORTVERSION= 0.3.1
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= http://rootshell.be/~polachok/code/
|
|
|
|
MAINTAINER= hrkfrd@googlemail.com
|
|
COMMENT= A dynamic window manager for X11 based on dwm
|
|
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
|
fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig
|
|
|
|
USE_XORG= x11 xft xrender
|
|
USE_GNOME= pkgconfig
|
|
|
|
MAN1= echinus.1
|
|
MANCOMPRESSED= no
|
|
|
|
FILES= echinusrc close.xbm iconify.xbm max.xbm
|
|
|
|
PLIST_FILES= bin/echinus \
|
|
etc/echinus/close.xbm \
|
|
etc/echinus/iconify.xbm \
|
|
etc/echinus/max.xbm \
|
|
etc/echinus/echinusrc
|
|
|
|
PLIST_DIRS= etc/echinus
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
@${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
|
|
@${MKDIR} ${ETCDIR}
|
|
@${INSTALL_DATA} ${FILES:S,^,${WRKSRC}/,} ${ETCDIR}/
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|