aboutsummaryrefslogtreecommitdiff
path: root/misc/sword
Commit message (Collapse)AuthorAgeFilesLines
* devel/icu: update to 64.1Jan Beich2019-03-271-1/+1
| | | | | | | | | | | Changes: http://site.icu-project.org/download/64 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 236325 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D19479 Notes: svn path=/head/; revision=496981
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+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
* devel/icu: update to 63.1Jan Beich2018-10-231-1/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/63 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 232300 Exp-run by: antoine Notes: svn path=/head/; revision=482830
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* devel/icu: update to 62.1Jan Beich2018-06-291-1/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/62 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 229359 Exp-run by: antoine (only 10.4) Notes: svn path=/head/; revision=473551
* devel/icu: update to 61.1Jan Beich2018-04-061-0/+1
| | | | | | | | | | | Changes: http://site.icu-project.org/download/61 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 227042 Exp-run by: antoine MFH: 2018Q2 (required by Firefox 61) Notes: svn path=/head/; revision=466648
* misc/sword: unbreak with ICU 61Jan Beich2018-04-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In file included from ../src/mgr/swmgr.cpp:108: ../include/utf8transliterator.h:53:2: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? UnicodeString resource; ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ In file included from ../src/mgr/swmgr.cpp:108: ../include/utf8transliterator.h:56:24: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? typedef std::map<const UnicodeString, SWTransData> SWTransMap; ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ In file included from ../src/mgr/swmgr.cpp:108: ../include/utf8transliterator.h:57:19: error: use of undeclared identifier 'UnicodeString' typedef std::pair<UnicodeString, SWTransData> SWTransPair; ^ ../include/utf8transliterator.h:84:2: error: unknown type name 'Transliterator'; did you mean 'UTransliterator'? Transliterator *createTrans(const UnicodeString& ID, UTransDirection dir, UErrorCode &status); ^~~~~~~~~~~~~~ UTransliterator /usr/local/include/unicode/utrans.h:70:15: note: 'UTransliterator' declared here typedef void* UTransliterator; ^ In file included from ../src/mgr/swmgr.cpp:108: ../include/utf8transliterator.h:84:36: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? Transliterator *createTrans(const UnicodeString& ID, UTransDirection dir, UErrorCode &status); ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ https://ssl.icu-project.org/trac/changeset/40705 PR: 227042 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=466397
* - Update to 1.8.1Wen Heping2018-04-022-4/+4
| | | | Notes: svn path=/head/; revision=466196
* - Update misc/sword to 1.8.0Thomas Abthorpe2018-02-233-10/+25
| | | | | | | | | | | - Chase shlib bump - Reassign to the heap PR: 225276 Submitted by: bsam Notes: svn path=/head/; revision=462657
* misc/sword: lift BROKEN_powerpc64 after r461290Jan Beich2018-02-111-2/+0
| | | | | | | PR: 215770 Notes: svn path=/head/; revision=461468
* devel/icu: drop C++98 compatibility workaroundsJan Beich2018-02-091-1/+3
| | | | | | | | | | | Now that both USE_GCC and -CURRENT default to C++14 there's little reason to complicate maintenance. Revert r449685 to usher consumers into post-C++11 world. PR: 222433 222434 222435 Notes: svn path=/head/; revision=461290
* - Fix build for FreeBSD 11+Thomas Abthorpe2018-01-171-1/+5
| | | | | | | MFH: 2018Q1 Notes: svn path=/head/; revision=459270
* devel/icu: update to 60.1Jan Beich2017-11-091-1/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/60 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 223373 Exp-run by: antoine Notes: svn path=/head/; revision=453790
* devel/icu: update to 59.1Jan Beich2017-09-251-1/+1
| | | | | | | | | | | | - Temporarily keep C++98 working in consumers for Clang's default -std= Changes: http://site.icu-project.org/download/59 PR: 218788 Submitted by: takefu@airport.fm, dcarmich@dcarmichael.net (early version) Exp-run by: antoine Notes: svn path=/head/; revision=450556
* Back out C++11 changes for ICU >= 59Jan Beich2017-09-121-3/+2
| | | | | | | | | | | | r449608, r449609, r449610, r449611, r449612, r449613, r449614, r449621, r449661, r449662 are reverted. ICU will pull char16_t typedef in C++98 mode instead. Pointy hat to: jbeich PR: 218788 222222 222225 Notes: svn path=/head/; revision=449685
* misc/sword: switch to C++11, required by ICU >= 59Jan Beich2017-09-111-2/+3
| | | | | | | | | | | | | | | | | | | In file included from ../src/mgr/swmgr.cpp:102: In file included from ../include/utf8transliterator.h:41: /usr/local/include/unicode/unistr.h:3025:7: error: delegating constructors are permitted only in C++11 UnicodeString(ConstChar16Ptr(text)) {} ^~~~~~~~~~~~~ /usr/local/include/unicode/unistr.h:3087:7: error: delegating constructors are permitted only in C++11 UnicodeString(ConstChar16Ptr(text), length) {} ^~~~~~~~~~~~~ /usr/local/include/unicode/unistr.h:3180:7: error: delegating constructors are permitted only in C++11 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {} ^~~~~~~~~~~~~ PR: 218788 Notes: svn path=/head/; revision=449611
* Mark some ports failing on power64. In cases where the error messageMark Linimon2017-05-201-2/+3
| | | | | | | | | | | | was a stub, provide a real one. While here, pet portlint. Reported by: swills Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=441320
* - Mark as BROKEN on 12.XThomas Abthorpe2017-04-201-0/+2
| | | | | | | MFH: 2017Q2 Notes: svn path=/head/; revision=438948
* devel/icu: update to 58.1Jan Beich2016-11-191-1/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/58 PR: 214384 Exp-run by: antoine Approved by: office (bapt) Notes: svn path=/head/; revision=426525
* - Update devel/icu to 57.1.Tijl Coosemans2016-09-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Clean up the Makefile. - Follow some upstream recommendations (--with-data-packaging=archive, --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE). - Patch makefiles to install static libraries with INSTALL_DATA so they aren't stripped. - Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc. - Fix endianness detection in ICU. The code wanted to use BYTE_ORDER defined in machine/endian.h, but this isn't visible because ICU is compiled with _XOPEN_SOURCE. Patch the code to use _BYTE_ORDER instead. - Compile ICU with C++11 compiler to enable move constructors. - Patch ICU to fix a problem with atomics in the case of a C++11 compiler without C++11 header <atomic> (like Clang on FreeBSD 9). - Bump all ports that depend on it due to library version change. - Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU pkgconfig files. - Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs a C++11 runtime library now. Add this to all ports that depend on it so their executables load the right libstdc++.so on FreeBSD 9. PR: 205120 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=422711
* Bump PORTREVISION for the icu revert.Mathieu Arnold2016-07-061-1/+1
| | | | | | | | | | | | This time not bumping lang/php70, but devel/php70-intl which is the one really depending on icu. PR: 205120 With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=418153
* devel/icu: bump PORTREVISION on dependent portsPietro Cerutti2016-07-061-1/+1
| | | | Notes: svn path=/head/; revision=418119
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Update icu to 55.1Baptiste Daroussin2015-04-231-0/+1
| | | | Notes: svn path=/head/; revision=384614
* - Update to 1.7.4Thomas Abthorpe2015-01-133-6/+4
| | | | Notes: svn path=/head/; revision=376907
* - Update to 1.7.3Thomas Abthorpe2015-01-103-51/+53
| | | | Notes: svn path=/head/; revision=376673
* Fix packaging as userBaptiste Daroussin2014-12-171-1/+1
| | | | Notes: svn path=/head/; revision=374856
* Cleanup plistBaptiste Daroussin2014-12-091-4/+0
| | | | Notes: svn path=/head/; revision=374378
* Fix packagingAntoine Brodin2014-10-061-1/+1
| | | | Notes: svn path=/head/; revision=370217
* - Fix plistDmitry Marakasov2014-07-292-1/+5
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=363415
* - USES=libtool pathfixTijl Coosemans2014-07-182-22/+8
| | | | | | | | | - Add INSTALL_TARGET=install-strip - Avoid USE_AUTOTOOLS - Use @sample Notes: svn path=/head/; revision=362199
* Convert GMAKE to MAKE_CMDBaptiste Daroussin2014-06-251-1/+1
| | | | | | | | | | Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr Notes: svn path=/head/; revision=359185
* Chase boost and icu bumpBaptiste Daroussin2014-02-071-0/+1
| | | | | | | While here convert some LIB_DEPENDS Notes: svn path=/head/; revision=343214
* - Update to 1.7.2Thomas Abthorpe2014-01-168-251/+70
| | | | | | | - Support STAGEDIR Notes: svn path=/head/; revision=339984
* - PKGSUFFIX name is better served on sword17Thomas Abthorpe2013-12-111-1/+0
| | | | Notes: svn path=/head/; revision=336183
* - Add PKGNAMESUFFIX to differentiate from sword17Thomas Abthorpe2013-12-111-0/+1
| | | | | | | | Submitted by: erwinbot Pointyhat to: tabthorpe Notes: svn path=/head/; revision=336181
* - Add CONFLICTS for the soon to be added misc/sword17Thomas Abthorpe2013-12-111-0/+2
| | | | Notes: svn path=/head/; revision=336140
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | misc) Notes: svn path=/head/; revision=327745
* - Cleanup MASTER_SITES, convert MASTER_SITE_SUBDIRAlexey Dokuchaev2013-09-101-16/+14
| | | | | | | | | | | | | - Tighten COMMENT line and drop the article - Fix the build against Clang and thus drop USE_GCC - Remove PKGMESSAGE, it's set automatically - Correctly pad ${CAT} ${PKGMESSAGE} - Couple of minor fixes (LIB_DEPENDS, etc.) Approved by: tabthorpe (maintainer) Notes: svn path=/head/; revision=326859
* Convert USE_GNOME=pkgconfig to USES=pkgconfigBaptiste Daroussin2013-08-311-2/+1
| | | | | | | | | Convert USE_GNOME=gnomehack to USES=pathfix Convert USE_GMAKE to USES=gmake Convert USE_PERL5 to USES=perl5 Notes: svn path=/head/; revision=325751
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Update to 7.31.0Sunpoet Po-Chuan Hsieh2013-07-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | - Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi Notes: svn path=/head/; revision=322783
* - Re-assign textproc/clucene maintainship to office@. [1]Jung-uk Kim2013-01-283-3/+128
| | | | | | | | | | | | | | | | | | | | | | - Update textproc/clucene to 2.3.3.4. Note this version is required by recent LibreOffice. - Remove textproc/clucene-contrib because it is now integrated into textproc/clucene. [2] - Mark textproc/p5-Lucene as broken. There is no dependent port and it was only written for obsolete Lucene 0.9.x API. [3] - Update deskutils/kdepim4 and deskutils/strigi to build with the new CLucene port. [4] - Update misc/bibletime and misc/sword to use new CLucene 2.3.x API. [5] Approved by: clsung (maintainer timeout) [1] Approved by: tj (maintainer) [2] Approved by: perl [3] Approved by: kde [4] Approved by: tabthorpe (maintainer timeout) [5] Obtained from: The SWORD Project [5] Notes: svn path=/head/; revision=311137
* Stop hard coding ICU version and fix plist (missed by r310086).Jung-uk Kim2013-01-102-12/+12
| | | | Notes: svn path=/head/; revision=310204
* Chase icu, graphite2 and libexttextcat bumpBaptiste Daroussin2012-12-182-17/+13
| | | | Notes: svn path=/head/; revision=309206
* Force numerous ports that fail to build with clang over to instead alwaysMark Linimon2012-10-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Notes: svn path=/head/; revision=305610
* - Depend on clucene for indexing, turned on by defaultThomas Abthorpe2012-07-012-3/+26
| | | | | | | | | | - Bump PORTREVISION PR: ports/169510 Submitted by: John Marshall <john.marshall riverwillow.com.au> Notes: svn path=/head/; revision=300297
* - Convert to new options frameworkThomas Abthorpe2012-06-101-7/+9
| | | | Notes: svn path=/head/; revision=298897
* - Fix build with curl 7.24.0: curl/types.h was removed (unused since Apr 2004)Sunpoet Po-Chuan Hsieh2012-03-081-0/+2
| | | | | | | | | Submitted by: sunpoet (myself) Tested by: exp-run by linimon Approved by: linimon (with portmgr hat) Notes: svn path=/head/; revision=292936
* - Remove WITH_FBSD10_FIX, is no longer neededMartin Wilke2011-11-091-1/+0
| | | | Notes: svn path=/head/; revision=285379