aboutsummaryrefslogtreecommitdiffstats
path: root/x11/tabbed/Makefile
blob: c85b5f863b4553b2f6c5788dbc14755ea1ba7607 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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>