aboutsummaryrefslogtreecommitdiff
path: root/converters/libiconv
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Move some gnome@ ports to desktop@Tobias C. Berner2020-09-101-1/+1
| | | | | | | | | | | | | | | | | | As gnome@ is lacking active committers at the moment, transfer some of its ports [1] up the stack to the desktop@ group, in hope that this way we get some updates in as the set of people that "should feel responsible" grows. As soon as gnome@ grows some committers again, this can (and should) of course be reverted again. [1] The list of ports chosen in this move consits of all the ports that are required to build x11/kde5. Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D26362 Notes: svn path=/head/; revision=548219
* converters/libiconv: Update to 1.16Niclas Zeising2020-05-187-74/+41
| | | | | | | | | | | | | | | | | Update converters/libiconv to 1.16. This update removes the extra patches for CP932 and EUCJP-MS, as they are not compatible with this release. Add an UPDATING entry for this change. ABI/API stable, no need to bump dependent ports: https://abi-laboratory.pro/index.php?view=timeline&l=libiconv PR: 240954 Submitted by: Yuichiro NAITO Exp-run by: antoine Approved by: maintainer timeout (gnome@) Notes: svn path=/head/; revision=535769
* Define ICONV_GET_ILSEQ_INVALID and ICONV_SET_ILSEQ_INVALID when mimickingTijl Coosemans2017-09-252-4/+10
| | | | | | | base system iconv.h. Notes: svn path=/head/; revision=450634
* - Add LICENSESunpoet Po-Chuan Hsieh2016-12-091-0/+3
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=428196
* Remove libiconv.so.3 compatibility link that was added in r374303 toTijl Coosemans2016-12-082-5/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428150
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans2015-10-102-12/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=398996
* Convert ports to use the options helpers in categories [abc]*, and minor fixes.Mathieu Arnold2015-08-191-12/+5
| | | | | | | | Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3412? Notes: svn path=/head/; revision=394778
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Hide _LIBICONV_VERSION when LIBICONV_PLUG is defined.Tijl Coosemans2015-04-162-6/+17
| | | | | | | | | | | | | This fixes building devel/gettext-runtime with gcc from lang/gcc*. With base system compiler gettext includes /usr/include/iconv.h but lang/gcc* implies -I/usr/local/include and gettext calls libiconv_set_relocation_prefix when it sees _LIBICONV_VERSION which isn't implemented (and isn't needed) by libc iconv. Reported by: Dewayne Geraghty <dewayne.geraghty@heuristicsystems.com.au> Notes: svn path=/head/; revision=384096
* converters/libiconv:Tijl Coosemans2015-04-152-5/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* Restore a patch hunk that was removed in r373636. It fixes a referenceTijl Coosemans2014-11-302-1/+10
| | | | | | | | | to the stage directory in an installed binary. Reported by: antoine Notes: svn path=/head/; revision=373660
* Split devel/gettext in devel/gettext-runtime and devel/gettext-tools. TheTijl Coosemans2014-11-294-22/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | first contains runtime libraries such as libintl and the latter contains developer tools such as msgfmt. Ports that use gettext will usually need a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools. USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on devel/gettext-runtime and USES=gettext-tools can be used to set a BUILD/RUN_DEPENDS on devel/gettext-tools. USES=gettext is now the same as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools. Update gettext to 0.19.3. Remove :oldver from converters/libiconv and devel/gettext-runtime. Leave symlinks with the old library versions to avoid the need to bump PORTREVISION on a large number of dependent ports. When most of the dependent ports have had normal version updates, PORTREVISION can be bumped on the remaining ones (low number) and the links can be removed. Fix some ports that installed files in lib/locale instead of share/locale. PR: 194038 Reviewed by: bapt Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=373636
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371249
* Remove *.la files from stagedir to fix a check-plist error.Tijl Coosemans2014-09-041-0/+3
| | | | | | | | | | | | The files were accidentally removed from pkg-plist in the previous commit but let's keep it that way now. This commit will be reverted when this port switches from "libtool:oldver" to "libtool". Reported by: ohauer Notes: svn path=/head/; revision=367257
* Add USES=libtool:oldver and INSTALL_TARGET=install-stripTijl Coosemans2014-09-012-3/+3
| | | | Notes: svn path=/head/; revision=366946
* Rename all patches that contain '::' as a path separator, and useAdam Weinberger2014-07-292-0/+0
| | | | | | | '__' instead. Notes: svn path=/head/; revision=363362
* - Remove indefinite article from COMMENT.Tijl Coosemans2014-03-232-5/+16
| | | | | | | | | | | | - Enable -fvisibility=hidden. - Add USE_CSTD=gnu89 to fix compilation with -O0 and -Oz. - Add DOCS option. PR: ports/186846 Approved by: kwm, marcus Notes: svn path=/head/; revision=348854
* Don't unconditionally install DOCS. PORTREVISION bumpAdam Weinberger2014-03-032-8/+8
| | | | | | | | | | for plist change. PR: ports/186590 Approved by: maintainer Notes: svn path=/head/; revision=346968
* - Add two new arguments to USES=iconv so ports can indicate they use GNUTijl Coosemans2014-01-292-11/+7
| | | | | | | | | | | | | | | | | iconv extensions that the base system iconv doesn't support yet: * wchar_t: port uses the special WCHAR_T character conversion. * translit: port uses //TRANSLIT or //IGNORE conversion options. Adding one or both of these arguments makes the port depend on converters/libiconv for now. - Allow installation of converters/libiconv on FreeBSD 10+. - Use ICONV_CONFIGURE_ARG in devel/gettext instead of defining CPPFLAGS and LDFLAGS to fix compilation with libiconv installed. - Stage converters/libiconv and devel/gettext. Approved by: bapt (on trust) Notes: svn path=/head/; revision=341775
* Reduce over inclusion of bsd.port.mkBaptiste Daroussin2014-01-151-3/+1
| | | | Notes: svn path=/head/; revision=339858
* Allow users to install converters/libiconv on 10.x systems if theyUlrich Spörlein2013-10-231-2/+2
| | | | | | | | | | | | | | decided to build world with WITHOUT_ICONV set. There's no need for this check to be based on OSVERSION. Some users (i.e. me), report subtle application breakages with the iconv-from-src that disappear when iconv-from-ports is installed. Allow for a bridge till these issues are sorted out. Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331388
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | converters) Notes: svn path=/head/; revision=327715
* Report correct OSVERSION in IGNORE message.Guido Falsi2013-09-061-1/+1
| | | | Notes: svn path=/head/; revision=326541
* - Make ports use the libc provided iconv implementation on 10-CURRENTGuido Falsi2013-09-041-1/+8
| | | | | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code) Notes: svn path=/head/; revision=326307
* Remove extra blank line to please portlint.Koop Mast2013-07-062-4/+11
| | | | | | | | | Don't let the port chmod 777 ${WRKSRC}/src to prevent possible security issue. Submitted by: tijl@ (priv mail) Notes: svn path=/head/; revision=322405
* Remove USE_AUTOTOOLS=libtool. This was added in r183830 because the bundledKoop Mast2013-07-065-49/+0
| | | | | | | | | | | | libtool at the time didn't handle the removal of objformat correctly. Also revert r239611. This revision was because the libtool port and the bundled libtool at the time detect "clang" as a valid C compiler. PR: ports/179753 Submitted by: tijl@ Notes: svn path=/head/; revision=322394
* Convert the last USE_ICONV to USES=iconvBaptiste Daroussin2013-04-271-5/+0
| | | | Notes: svn path=/head/; revision=316695
* Prevent using gawk which depends on gettext in configure scriptsBaptiste Daroussin2013-03-181-0/+4
| | | | | | | | Reported by: rene, avg Tested by: rene Notes: svn path=/head/; revision=314581
* Fix a long standing bug of lib/charset.alias being overwritten, modified, ↵Baptiste Daroussin2013-03-184-65/+3
| | | | | | | | | | | | | | | | | and badly tracked by ports. Make lib/charset.alias a file only provided by converters/libiconv Create a new USES: charsetfix, that will modify in post patch the Makefile.in to prevent a port from modifying/overwritting the charset.alias file during make install. Prevent devel/gettext from installing that files. Fix a couple of ports that actually touch charset.alias during the build phase. Based on a patch by ale (http://lists.freebsd.org/pipermail/freebsd-gnome/2012-October/027747.html) Approved by: kwm (gnome) Exp-run by: miwi Notes: svn path=/head/; revision=314556
* Update distinfo for the optional patch. For some reason the wrong sha265 gotKoop Mast2012-12-101-1/+1
| | | | | | | | | recorded. I checked and the content hasn't changed. Submitted by: zeising@ Notes: svn path=/head/; revision=308637
* Reenable the patch to fix CP932 and add EUCJP-MS.Koop Mast2012-12-092-17/+17
| | | | | | | | | | While here trim header and convert to OptionsNG. PR: ports/173986 Submitted by: Takumi Takahashi <takumi@tmfam.com> Notes: svn path=/head/; revision=308560
* Update to 1.14.Koop Mast2012-04-216-120/+38
| | | | | | | | | | | | Disable EXTRA_PATCHES since there isn't a new version of this patch for 1.14. Ports exp-run done by linimon@ PR: ports/165514 Submitted by: myself Notes: svn path=/head/; revision=295225
* Bump PORTREVISION for the previous commit to fix C++ builds.Joe Marcus Clarke2012-03-041-1/+1
| | | | Notes: svn path=/head/; revision=292700
* Fix building C++ code that uses libiconv.Joe Marcus Clarke2012-03-041-0/+43
| | | | | | | | PR: 165348 Submitted by: Pedro Giffuni <giffunip@tutopia.com> Notes: svn path=/head/; revision=292699
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-111-1/+0
| | | | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Notes: svn path=/head/; revision=279506
* - Get Rid MD5 supportMartin Wilke2011-03-201-2/+0
| | | | Notes: svn path=/head/; revision=271346
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Restore comma I bogusly deleted in rev. 1.41 over 2 years ago.Alexey Dokuchaev2010-02-251-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250297
* Apply patch from the upstream to prevent endless loop triggered byAlexander Nedotsukov2010-02-062-0/+33
| | | | | | | | | incomplete UTF-8 sequence. PR: 143575 Notes: svn path=/head/; revision=249324
* Fix with build with llvm/clang.Joe Marcus Clarke2009-08-154-0/+48
| | | | | | | Submitted by: Ryan Flynn <parseerror@gmail.com> Notes: svn path=/head/; revision=239611
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* Fix patch issue WITH_EXTRA_PATCHES.Norikatsu Shigemura2009-07-052-1/+4
| | | | Notes: svn path=/head/; revision=237157
* Update to 1.13.1.Joe Marcus Clarke2009-07-043-13/+10
| | | | Notes: svn path=/head/; revision=237140
* Fix the OPTIONS bit of EXTRA_PATCHES.Koop Mast2009-06-151-2/+2
| | | | Notes: svn path=/head/; revision=235875
* Re-enable EXTRA_PATCHES.Norikatsu Shigemura2009-06-152-7/+10
| | | | Notes: svn path=/head/; revision=235871
* Comment out the EXTRA_PATCHES option. Patch needs to be updated.Koop Mast2009-06-151-9/+9
| | | | Notes: svn path=/head/; revision=235869
* Update to 1.13. Note: the iconv(1) utility is now licensed under GPLv3.Joe Marcus Clarke2009-06-156-36/+37
| | | | | | | | | | The library is still licensed under the LGPL. PR: 131769 Submitted by: Takeshi Taguchi <taguchi@iij.ad.jp> (based on) Notes: svn path=/head/; revision=235835
* Build libiconv with -std=gnu89.Ed Schouten2009-06-041-0/+1
| | | | | | | | | | libiconv fails to link when built with a C99 compiler, because it uses GNU-style inlining. Approved by: marcus Notes: svn path=/head/; revision=235144
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-04-071-0/+1
| | | | | | | Reported by: David Naylor <naylor.b.david@gmail.com> Notes: svn path=/head/; revision=231838