blob: 0c3299821d17c57b4e2b68364cf891788fb4da9a (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Created by: Vitaly Magerya <vmagerya@gmail.com>
# $FreeBSD$
PORTNAME= wordgrinder
PORTVERSION= 0.6
CATEGORIES= editors
MAINTAINER= vmagerya@gmail.com
COMMENT= Simple Unicode-aware console and X11-based word processor
RUN_DEPENDS= ${LUA_MODLIBDIR}/lfs.so:devel/luafilesystem
USE_GITHUB= yes
GH_ACCOUNT= davidgiven
USES= gmake lua:52 ncurses
PLIST_FILES= bin/wordgrinder \
share/doc/wordgrinder/README.wg \
man/man1/wordgrinder.1.gz
OPTIONS_DEFINE= X11
OPTIONS_DEFAULT=X11
X11_DESC= Support running in an X window in addition to console
X11_PLIST_FILES=bin/xwordgrinder
X11_USE= xorg=x11,xft
X11_USES= pkgconfig
X11_ALL_TARGET_OFF=unix
post-patch:
${REINPLACE_CMD} \
-e '/hide = /s/@//' \
-e '/cc := gcc/s|gcc|${CC}|' \
-e '/LUA_INCLUDE := /s|= .*|= ${LUA_INCDIR}|' \
-e '/ldflags := /s|=|= -L${LUA_LIBDIR}|' \
-e 's|-llua5.2|-llua-${LUA_VER}|' \
-e 's|$$(hide)lua|$$(hide)${LUA_CMD}|' \
-e '/PREFIX = /d' \
-e '/install /s|$$(PRE|$$(DESTDIR)$$(PRE|' \
-e '/install /s|share/man/man1|man/man1|' \
-e '/NCURSES_CFLAGS :=/s|=.*|=|' \
-e '/NCURSES_LIB :=/s|=.*|= -lncursesw|' \
-e '/X11_CFLAGS :=/s|=.*|= $$(shell pkg-config --cflags x11 xft)|' \
-e '/X11_LIB :=/s|=.*|= $$(shell pkg-config --libs x11 xft)|' \
${WRKSRC}/Makefile
${REINPLACE_CMD} \
-e '/#include <Xft/s|<|<X11/|' \
${WRKSRC}/src/c/arch/unix/x11/x11.h
# This is not strictly speaking required, but it cuts
# down on some unnecessary work and error messages.
post-patch-X11-off:
${REINPLACE_CMD} \
-e '/$$(eval $$(build-wordgrinder-x11))/d' \
${WRKSRC}/Makefile
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/wordgrinder
post-install-X11-on:
${INSTALL_PROGRAM} ${WRKSRC}/bin/xwordgrinder ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
|