mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
ccc6c731dc
The PR claims the port is broken and this patch unbreaks it, but portsmon is clean. In any case, the port builds cleanly in poudriere with the patch so I defer to the maintainer. PR: ports/187827 submitted by: maintainer (Yasuhiro KIMURA)
37 lines
826 B
Makefile
37 lines
826 B
Makefile
# Created by: Shigeyuki Fukushima <shige@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= eblook
|
|
PORTVERSION= 1.6.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= japanese textproc
|
|
MASTER_SITES= http://openlab.ring.gr.jp/edict/eblook/dist/
|
|
DIST_SUBDIR= eb
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= Command to lookup words in EB format dictionaries
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libeb.so:${PORTSDIR}/japanese/eb
|
|
|
|
USES= iconv
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-eb-conf=${PREFIX}/etc/eb.conf
|
|
CPPFLAGS+= -I${ICONV_PREFIX}/include
|
|
LDFLAGS+= -L${ICONV_PREFIX}/lib ${ICONV_LIB}
|
|
|
|
INFO= eblook
|
|
PLIST_FILES= bin/eblook
|
|
PORTDOCS= AUTHORS COPYING ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|