mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
dc4c6ce315
- Employ USES+=localbase:ldflags instead of manually setting CFLAGS and LDFLAGS - Propagate our standard `prefix' and `mandir' to inner Makefile and thus get rid of hand-rolled `do-install' target - Install `doc/standards.html' and convert to options helper target - Simplify PLIST_FILES and sanitize port description text while here TIMESTAMP (evilwm-1.1.1.tar.gz) = 1436791316
31 lines
683 B
Makefile
31 lines
683 B
Makefile
# Created by: trevor
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= evilwm
|
|
PORTVERSION= 1.1.1
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= http://www.6809.org.uk/evilwm/
|
|
|
|
MAINTAINER= lasg@lasg.dk
|
|
COMMENT= Minimalist window manager based on 9wm
|
|
|
|
USES= gmake localbase:ldflags
|
|
USE_XORG= x11 xpm xext xrandr xrender
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" prefix="${PREFIX}" \
|
|
mandir="${MANPREFIX}/man"
|
|
|
|
PLIST_FILES= bin/evilwm \
|
|
man/man1/evilwm.1.gz \
|
|
share/applications/evilwm.desktop
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ChangeLog README TODO doc/standards.html
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|