blob: f3f8fd6dcd9b9a76ecb4b37d8064a487517d45d0 (
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
|
# Created by: Rashid N. Achilov <citycat4@ngs.ru>
# $FreeBSD$
PORTNAME= yui
PORTVERSION= 3.2.06
CATEGORIES= editors
MASTER_SITES= http://www.sheltonsoft.ru/fileZ/software/ \
http://www.askd.ru/~shelton/design/
MAINTAINER= ports@FreeBSD.org
COMMENT= Rich-featured multi-windows console text editor
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
BROKEN_aarch64= fails to compile: cast from pointer to smaller type loses information
BROKEN_armv6= fails to link: undefined reference to HTAnchor_physical
BROKEN_mips64= fails to compile: cast from unsigned char* to unsigned int loses precision
BROKEN_sparc64= fails to compile
BROKEN_powerpc64= fails to build: strip: open tyui/y failed: No such file or directory
USES= tar:bzip2
USE_AUTOTOOLS= autoconf aclocal
ACLOCAL_ARGS= -I m4
MAKE_ENV= LIBPATH=${PREFIX}/lib
OPTIONS_DEFINE= DOCS
post-install:
${LN} -sf help_eng.html ${STAGEDIR}${PREFIX}/lib/yui/yhelp.html
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in BUGS CHANGES TODO THANKS
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|