aboutsummaryrefslogtreecommitdiff
path: root/chinese/libpinyin
Commit message (Collapse)AuthorAgeFilesLines
* chinese/libpinyin: update to 2.8.1Charlie Li2023-03-133-12/+11
| | | | | | | | | - correct LICENSE and specify LICENSE_FILE - bump consumers due to ABI version change Changes: https://github.com/libpinyin/libpinyin/compare/2.6.2...2.8.1 Approved by: lichray[at]gmail[dot]com (maintainer) PR: 270155
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* chinese: remove 'Created by' linesTobias C. Berner2022-07-201-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A big Thank You to the original contributors of these ports: * <intron@intron.ac> * Bo-Yi Wu <appleboy.tw@gmail.com> * Chih-Hsin Chang <chihhsin@cs.nctu.edu.tw> * Ching-Hong Wu <woju@freebsd.ntu.edu.tw> * David O'Brien (obrien@FreeBSD.org) * David O'Brien (obrien@cs.ucdavis.edu) * Eric L. Camachat <eric@camachat.org> * Foxfair Hu <foxfair@FreeBSD.org> * G. Adam Stanislav <adam@whizkidtech.net> * Gasol Wu <gasol.wu@gmail.com> * Gea-Suan Lin <gslin@gslin.org> * Henry Hu <henry.hu.sh@gmail.com> * Jie Gao <gaoj@cpsc.ucalgary.ca> * Jing-Tang Keith Jang <keith@FreeBSD.org> * Joe Horn <joehorn@gmail.com> * Ka Ho Ng <khng300@gmail.com> * Kuang-che Wu <kcwu@csie.org> * Michael C . Wu <keichii@iteration.net> * Michael C. Wu * Ming-I Hseh <PA@FreeBSD.Ntu.edu.TW> * Rong-En Fan <rafan@FreeBSD.org> * Satoshi TAOKA <taoka@FreeBSD.org> * Shell Hung <shell@shellhung.org> * Shen Chuan-Hsing * Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw> * Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> * Yen-Ming Lee <leeym@FreeBSD.org> * Yen-Shuo Su <yssu@CCCA.NCTU.edu.tw> * Yin-Jieh Chen <yinjieh@csie.nctu.edu.tw> * Yinghong Liu <relaxbsd@gmail.com> * Zhang Shu * Zhihao Yuan <lichray@gmail.com> * blubee <hello@blubee.me> * buganini@gmail.com * chinsan * chinsan <chinsan.tw@gmail.com> * clive * clsung * clsung@dragon2.net * gugod@gugod.org * hrs * ijliao * vanilla@ With hat: portmgr
* chinese/libpinyin: update to 2.6.2.Xin LI2022-05-024-9/+9
| | | | | PR: ports/263711 Approved by: maintainer (lichray at gmail dot com)
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-301-1/+1
| | | | | | | | | | | | | | | | | Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update Chinese Pinyin related ports:Xin LI2019-08-164-12/+16
| | | | | | | | | | | | chinese/ibus-libpinyin: 1.10.0 -> 1.11.1, enable OpenCC chinese/libpinyin: 2.2.0 -> 2.3.0 textproc/ibus: 1.5.18 -> 1.5.20, while there also fix pkg-message for Qt Reviewed: Zhihao Yuan <lichray gmail com>, Henry Hu <henry.hu.sh gmail com> Differential Revision: https://reviews.freebsd.org/D21177 Notes: svn path=/head/; revision=509067
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* This port requires a C++11-aware compiler to build on GCC-basedMark Linimon2018-12-031-1/+1
| | | | | | | | | | | | | architectures. While here, pet portlint. PR: 233701 Submitted by: Piotr Kubaj Approved by: maintainer Notes: svn path=/head/; revision=486553
* - Update to 2.2.0Wen Heping2018-10-153-6/+8
| | | | | | | | | PR: 231611 Submitted by: ryo@tetera.org Approved by: maintainer Notes: svn path=/head/; revision=482136
* USE_BDB cleanup.Mathieu Arnold2016-08-081-2/+1
| | | | | | | | | | | | | | - USE_BDB=4x+ -> USES=bdb. - USE_BDB=yes -> USES=bdb. - USE_BDB=xx -> USES=bdb:xx. Other modernisations when I see them. PR: 209183 Sponsored by: Absolight Notes: svn path=/head/; revision=419843
* Update to 1.2.0.Xin LI2015-10-043-7/+11
| | | | | | | | PR: ports/203027 Approved by: maintainer timeout Notes: svn path=/head/; revision=398619
* Major update to libpinyin, fcitx and their add ons:Xin LI2015-03-318-44/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=382798
* Cleanup plistBaptiste Daroussin2014-10-201-3/+0
| | | | Notes: svn path=/head/; revision=371243
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.Matthias Andree2014-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) Notes: svn path=/head/; revision=365599
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-08-062-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=364186
* Support STAGEDIR.Vanilla I. Shu2014-01-082-4/+4
| | | | | | | Approved by: portmgr (blanket infrastructure) Notes: svn path=/head/; revision=339152
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | chinese) Notes: svn path=/head/; revision=327713
* Eliminate USE_GNOME=pkgconfig from chineseBaptiste Daroussin2013-09-021-3/+2
| | | | Notes: svn path=/head/; revision=325952
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* Update to 0.7.91, this is prerequisture for fcitx-libpinyin.Xin LI2012-10-153-9/+4
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=305933
* - Update to 0.7.1Wen Heping2012-09-083-11/+13
| | | | | | | | PR: 171330 Submitted by: Zhihao Yuan <lichray@gmail.com> (maintainer) Notes: svn path=/head/; revision=303889
* Add port chinese/libpinyin: The libpinyin project aims to provide the ↵Michael Scheidell2012-05-016-0/+91
algorithms core for intelligent sentence-based Chinese pinyin input methods. WWW: https://github.com/libpinyin/libpinyin PR: ports/166716 Submitted by: Zhihao Yuan <lichray@gmail.com> (maintainer) Notes: svn path=/head/; revision=295784