aboutsummaryrefslogtreecommitdiff
path: root/textproc/simplexml
Commit message (Collapse)AuthorAgeFilesLines
* Remove textproc/simplexml: UnfetchableYuri Victorovich2020-05-255-61/+0
| | | | | | | | | | | Unfetchable, an alternative upstream suggested in bug#235252 only contains the MS C-sharp project which is unbuildable on FreeBSD https://bitbucket.org/kberridge/simplexml/src PR: 235252 Notes: svn path=/head/; revision=536437
* Deprecate ports broken for more than 6 monthsAntoine Brodin2020-04-041-0/+2
| | | | Notes: svn path=/head/; revision=530719
* Mark a few ports BROKEN (unfetchable)Antoine Brodin2019-11-061-0/+2
| | | | Notes: svn path=/head/; revision=516897
* textproc/simplexml: Remove unnecessary .if defined(WITH_DEBUG)Yuri Victorovich2019-01-271-4/+0
| | | | | | | | | USES=cmake translates WITH_DEBUG into -DDEBUG_MODE:BOOL=ON automatically. Approved by: portmgr blanket Notes: svn path=/head/; revision=491375
* Convert tab after WWW: in pkg-descrs to single space as per PHBDmitry Marakasov2016-05-231-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415738
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Uses/iconv.mk: Set iconv-related CMake variables.Raphael Kubo da Costa2015-09-032-60/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The way we deal with iconv in base and ports across different FreeBSD releases is complicated: 9.x does not have iconv.h in base, 10.1 has it with a different prototype for iconv(3) and later versions have the right iconv(3) prototype. And, in some cases (USES=iconv:{translit,wchar_t}), we must always use the libiconv port. This is why there are so many checks in Uses/iconv.mk: we need to know the situation we currently have in order to decide whether to pull iconv from converters/libiconv, whether to just use its header (and pull the library from base) or whether to use everything from base. r384038 adjusted several CMake-based ports, but did so in a way that was not very scalable and required a few intrusive patches to some ports. Most ports that have both USES=cmake and USES=iconv use variations of FindIconv.cmake that behave similarly. This change passes the header and library values we really want to use to CMake using the most common variable names, bypassing the calls to find_path() and find_library() that would sometimes end up finding the wrong file. The few ports that use different variable names have had their Makefiles adjusted (we manually pass the values we want via CMAKE_ARGS). Other changes: - chinese/fcitx: Explicitly set LIBICONV_LIBC_HAS_ICONV_OPEN=OFF as we always want the version from ports because of USES=iconv:wchar_t. - editors/calligra: Explicitly use iconv:translit because Kexi needs it. - irc/weechat and irc/weechat-devel: The FindIconv.cmake patches could not be entirely removed because the check_library_exists() calls are wrong. Sent upstream: https://github.com/weechat/weechat/pull/513 - textproc/ctpp2: Use iconv:translit when the TRANSLITERATE option is used. PORTREVISION has been bumped in editors/calligra and textproc/ctpp2 because their dependency list has changed in 10.2 and later as the ports version is always used now. PR: 202798 Reviewed by: antoine, tijl Approved by: portmgr (antoine) Notes: svn path=/head/; revision=395972
* converters/libiconv:Tijl Coosemans2015-04-152-8/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=384038
* Cleanup plistAntoine Brodin2014-11-151-1/+0
| | | | Notes: svn path=/head/; revision=372605
* Fix build on 10+.Adam Weinberger2014-09-031-0/+11
| | | | Notes: svn path=/head/; revision=367142
* Fix build.Adam Weinberger2014-08-011-0/+10
| | | | Notes: svn path=/head/; revision=363743
* * Convert to stagingMathieu Arnold2014-01-201-2/+1
| | | | | | | | | * Convert to new LIB_DEPENDS format Sponsored by: Absolight Notes: svn path=/head/; revision=340470
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | textproc) Notes: svn path=/head/; revision=327773
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and USE_GETTEXT=yes to USES=gettext while here Notes: svn path=/head/; revision=316683
* - convert USE_CMAKE to USESMax Brazhnikov2013-03-221-1/+1
| | | | | | | | | | - while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314960
* - Remove USE_GZIP=yes since it is defaultWen Heping2011-07-071-1/+0
| | | | | | | | | PR: ports/157174 Submitted by: Alex kozlov <spam@rm-rf.kiev.ua> Approved by: pav@(portmgr) Notes: svn path=/head/; revision=277219
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276994
* A C++ XML parser library.Dmitry Marakasov2010-08-314-0/+57
WWW: http://bitbucket.org/klepa/simplexml PR: 149320 Submitted by: Konstantin Lepa <konstantin.lepa@gmail.com> Notes: svn path=/head/; revision=260233