mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
3ed820108d
- Patch cmake include to actually work - Bump PORTREVISION on consumers, testing shows it is not completely binary compatible
42 lines
953 B
Makefile
42 lines
953 B
Makefile
# Created by: Zhihao Yuan <lichray@gmail.com>
|
|
|
|
PORTNAME= librime
|
|
PORTVERSION= 1.7.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= chinese textproc
|
|
|
|
MAINTAINER= khng300@gmail.com
|
|
COMMENT= Rime Input Method Engine, the core library
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
|
|
libcapnp.so:devel/capnproto \
|
|
libgflags.so:devel/gflags \
|
|
libglog.so:devel/glog \
|
|
libleveldb.so:databases/leveldb \
|
|
libmarisa.so:devel/marisa-trie \
|
|
libopencc.so:chinese/opencc \
|
|
libyaml-cpp.so:devel/yaml-cpp \
|
|
|
|
USES= cmake compiler:c++14-lang gettext pathfix perl5 pkgconfig xorg
|
|
USE_PERL5= build patch
|
|
|
|
CMAKE_OFF= BUILD_TEST
|
|
|
|
USE_CXXSTD= c++14
|
|
USE_LDCONFIG= yes
|
|
USE_XORG= xorgproto
|
|
LDFLAGS+= -lintl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= rime
|
|
|
|
PLIST_SUB= VER=${PORTVERSION}
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} \( -name '*.cc' -or -name '*.h' \) \
|
|
-exec ${PERL} -i -pe '$$. == 1 && s/^\xef\xbb\xbf//;' {} \;
|
|
|
|
.include <bsd.port.mk>
|