freebsd-ports/x11/tabbed/Makefile
Alexey Dokuchaev e5622822e1 Convert the patch in the "context diff" format which no longer correctly
applies by the modern FreeBSD patch(1).  Patch was applied on the FreeBSD
8.4 and then regenerated with ``make makepatch''.  While here, replace
hardcoded ``/usr/local'' with ${LOCALBASE} as appropriate, merge in the
change made with sed(1), and typofix + shorten the COMMENT text.

Reported by:	pkg-fallout
2020-09-01 08:41:23 +00:00

37 lines
843 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= Tabbed frontend to Xembed-aware applications
LICENSE= MIT
USES= xorg
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
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>