blob: d91a8c00a2947300473b36dd46b7a4b694271e51 (
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
|
# Created by: Zhihao Yuan <lichray@gmail.com>
# $FreeBSD$
PORTNAME= libpinyin
PORTVERSION= 0.7.91
CATEGORIES= chinese textproc
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}
MAINTAINER= lichray@gmail.com
COMMENT= Library to deal with pinyin
MAN1= libpinyin.1 gen_binary_files.1 gen_unigram.1 \
import_interpolation.1
USE_BDB= yes
USE_GNOME= glib20
USES= gettext gmake pathfix pkgconfig
GNU_CONFIGURE= yes
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
CONFIGURE_ARGS+=CPPFLAGS="-I${LOCALBASE}/include \
-I${BDB_INCLUDE_DIR} -D_WITH_GETLINE" \
LDFLAGS="-L${LOCALBASE}/lib -l${BDB_LIB_NAME}"
PLIST_SUB+= VER=${PORTVERSION}
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800107
IGNORE= does not compile on FreeBSD 7.X
.endif
.include <bsd.port.post.mk>
|