1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/x11/tabbed/Makefile
Pawel Pekala ac7f329881 - Update to version 0.6 [1]
- Support staging [1]
- Respect CFLAGS

PR:		ports/185903 [1]
Submitted by:	maintainer
2014-01-29 21:30:31 +00:00

39 lines
932 B
Makefile

# Created by: Winston Weinert <winstonw@lavabit.com>
# $FreeBSD$
PORTNAME= tabbed
PORTVERSION= 0.6
CATEGORIES= x11
MASTER_SITES= http://dl.suckless.org/tools/
MAINTAINER= mp39590@gmail.com
COMMENT= Simple generic tabbed fronted to xembed aware applications
LICENSE= MIT
USE_XORG= x11
OPTIONS_DEFINE= DOCS
PLIST_FILES= bin/tabbed \
man/man1/tabbed.1.gz
PORTDOCS= LICENSE README
pre-everything::
@${ECHO_MSG} "You can build tabbed with your own config.h using the TABBED_CONF knob:"
@${ECHO_MSG} "make TABBED_CONF=/path/to/tabbed/config.h install clean"
post-extract:
.if defined(TABBED_CONF)
@${ECHO_MSG} "creating config.h from ${TABBED_CONF}"
@${CP} ${TABBED_CONF} ${WRKSRC}/config.h
.endif
@${REINPLACE_CMD} 's|-std=c99 -pedantic -Wall -O0|${CFLAGS}|' \
${WRKSRC}/config.mk
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>