blob: bf35bb6d3508b5d83fafc62884e603b0a14bc87f (
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
|
# Created by: Kai Wang <kaiw27@gmail.com>
# $FreeBSD$
PORTNAME= fish
PORTVERSION= 2.6.0
CATEGORIES= shells
MASTER_SITES= http://fishshell.com/files/${PORTVERSION}/
MAINTAINER= asomers@FreeBSD.org
COMMENT= User friendly command line shell
LICENSE= GPLv2
LIB_DEPENDS+= libpcre2-32.so:devel/pcre2
USES= autoreconf cpe gmake libtool ncurses pkgconfig pathfix python:3 \
localbase compiler:c++11-lang shebangfix
SHEBANG_FILES= share/tools/*.py share/tools/web_config/webconfig.py
GNU_CONFIGURE= yes
CPE_VENDOR= fishshell
LDFLAGS+= -L${LOCALBASE}/lib -pthread
MANDIRS= ${DATADIR}/man/man1
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENV= ac_cv_func_gettext=yes
NLS_CONFIGURE_OFF= --without-gettext
post-patch:
@${REINPLACE_CMD} -e \
'/^all:/s|user_doc|| ; \
s| "$$(HAVE_GETTEXT)" = 1| x$$(HAVE_GETTEXT) = x1| ; \
s| $$(HAVE_GETTEXT) = 1| x$$(HAVE_GETTEXT) = x1| ; \
s|$$(DESTDIR)$$(bindir)/fish|$$(bindir)/fish|g' \
${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e \
's|-rdynamic|-Wl,--export-dynamic| ; \
/pthread_create/d ; \
s|ncurses curses|curses| ; \
s|ncurses.h||' ${WRKSRC}/configure.ac
post-install:
.for i in fish fish_indent fish_key_reader
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i}
.endfor
.include <bsd.port.mk>
|