1e0f9c5aad
- New port: chinese/brise Rime schema repository - Update chinese/fcitx to 4.2.8.5. - Update chinese/fcitx-chewing to 0.2.2. - Update chinese/fcitx-cloudpinyin to 0.3.4. - Update chinese/fcitx-configtool to 0.4.8. - Update chinese/fcitx-libpinyin to 0.3.1. - Update chinese/fcitx-rime to 0.3.1. - Update chinese/fcitx-sunpinyin to 0.4.1. - Update chinese/fcitx-table-extra to 0.3.7. - Add LICENSE and update website (mainly move off Google Code) for various ports. - Update chinese/libpinyin to 1.1.0. - Update chinese/librime to 1.1. - Update chinese/opencc to 0.4.3. - Update japanese/fcitx-anthy to 0.2.1. - New port: japanese/fcitx-skk SKK support for Fcitx - Update korean/fcitx-hangul to 0.3.0. - Update textproc/fcitx-m17n to 0.2.3. PR: ports/198743 Submitted by: maintainer, hiroto.kagotani@gmail.com, delphij
30 lines
669 B
Makefile
30 lines
669 B
Makefile
# Created by: Zhihao Yuan <lichray@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libpinyin
|
|
PORTVERSION= 1.1.0
|
|
CATEGORIES= chinese textproc
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}
|
|
|
|
MAINTAINER= lichray@gmail.com
|
|
COMMENT= Library to deal with pinyin
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_BDB= yes
|
|
USE_GNOME= glib20
|
|
USES= gettext gmake libtool pathfix pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS+=CPPFLAGS="-I${LOCALBASE}/include \
|
|
-I${BDB_INCLUDE_DIR} -D_WITH_GETLINE" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -l${BDB_LIB_NAME}"
|
|
INSTALL_TARGET=install-strip
|
|
|
|
PLIST_SUB+= VER=${PORTVERSION}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpinyin.so.5.0.0
|
|
|
|
.include <bsd.port.mk>
|