blob: 7e485d9b3f0ecfd5ac20b37bbad4d691b494b8b2 (
plain)
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: Zhihao Yuan <lichray@gmail.com>
# $FreeBSD$
PORTNAME= librime
PORTVERSION= 1.2.9
DISTVERSIONPREFIX= rime-
PORTREVISION= 13
CATEGORIES= chinese textproc
MAINTAINER= lichray@gmail.com
COMMENT= Rime Input Method Engine, the core library
LICENSE= GPLv3
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
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++11-lib gettext pathfix perl5 pkgconfig
USE_PERL5= build patch
USE_CXXSTD= c++11
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>
|