aboutsummaryrefslogtreecommitdiff
path: root/net/c3270
Commit message (Collapse)AuthorAgeFilesLines
* net/c3270: Fix CPE informationBernhard Froehlich2021-09-031-0/+2
| | | | Approved by: portmgr (blanket)
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* x11/x3270: Update the pkg-descrKevin Bowling2021-02-151-6/+0
| | | | | | | Sponsored by: BBOX.io Notes: svn path=/head/; revision=565339
* net/c3270: Make it a slave port of x11/x3270Kevin Bowling2021-02-154-125/+10
| | | | | | | | | Reviewed by: krion, timur Sponsored by: BBOX.io Differential Revision: D28606 Notes: svn path=/head/; revision=565323
* net/c3270: take maintainerKevin Bowling2020-08-301-1/+1
| | | | | | | Per private communication with araujo@ he doesn't have time to maintain ports Notes: svn path=/head/; revision=546965
* Update devel/readline to 8.0Sunpoet Po-Chuan Hsieh2019-04-091-1/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://tiswww.case.edu/php/chet/readline/CHANGES PR: 236156 Exp-run by: antoine Notes: svn path=/head/; revision=498476
* Update devel/readline to 7.0 patch 3Sunpoet Po-Chuan Hsieh2017-06-271-1/+1
| | | | | | | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html Differential Revision: https://reviews.freebsd.org/D11172 PR: 219947 Exp-run by: antoine Notes: svn path=/head/; revision=444463
* Remove all USE_OPENSSL occurrences.Mathieu Arnold2017-03-151-2/+2
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=436247
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans2015-10-101-1/+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
* converters/libiconv:Tijl Coosemans2015-04-151-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-221-1/+0
| | | | Notes: svn path=/head/; revision=373063
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-151-1/+1
| | | | Notes: svn path=/head/; revision=361967
* - Use MANPREFIX instead of MAN1PREFIX.Marcelo Araujo2014-06-301-4/+4
| | | | Notes: svn path=/head/; revision=359885
* - Update to 3.3.14ga11.Marcelo Araujo2014-06-303-18/+23
| | | | | | | - Stagify. Notes: svn path=/head/; revision=359878
* 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
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* - Convert gmake,bzip2 to USESMartin Wilke2014-05-291-3/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=355691
* Missing =.Cy Schubert2014-03-311-1/+1
| | | | | | | Pointy hat to: self Notes: svn path=/head/; revision=349705
* Register conflicts due to x3270if.Cy Schubert2014-03-311-0/+3
| | | | | | | Approved by: araujo Notes: svn path=/head/; revision=349701
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340674
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | net) Notes: svn path=/head/; revision=327755
* Convert to new options frameworkBaptiste Daroussin2013-06-051-38/+37
| | | | Notes: svn path=/head/; revision=319986
* - Update to 3.3.12ga13.Marcelo Araujo2013-05-242-3/+3
| | | | | | | | PR: ports/169942 [based on] Submitted by: Thomas Johnson <tom@claimlynx.com> Notes: svn path=/head/; revision=318928
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* - Update to 3.3.12ga7.Marcelo Araujo2012-01-203-24/+8
| | | | | | | - Improve the description into pkg-descr. Notes: svn path=/head/; revision=289503
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+3
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Geocities has been gone for almost 2 years now, so let's removeDoug Barton2011-08-231-1/+0
| | | | | | | | | references to it. Deprecate ports whose only MASTER_SITE is (was) geocities Notes: svn path=/head/; revision=280250
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* c3270 doesn't depends on devel/icu2 at allBaptiste Daroussin2010-12-161-8/+0
| | | | Notes: svn path=/head/; revision=266401
* - Update to c3270-3.3.11ga6.Marcelo Araujo2010-09-272-4/+4
| | | | Notes: svn path=/head/; revision=261947
* - Update to 3.3.10ga5.Marcelo Araujo2010-06-263-13/+10
| | | | | | | | | PR: ports/147152 Submitted by: Eric F Crist <ecrist@secure-computing.net> Feature safe: yes Notes: svn path=/head/; revision=257027
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* Enclose OPTIONS descriptions in double quotes, as bsd.port.mk assumes.Ruslan Ermilov2008-03-291-12/+12
| | | | Notes: svn path=/head/; revision=210086
* - Change my mail address to araujo@.Marcelo Araujo2007-06-291-1/+1
| | | | | | | Approved by: stas (mentor) Notes: svn path=/head/; revision=194470
* - Update to 3.3.4p8Martin Wilke2007-01-152-5/+5
| | | | | | | | | | - Pass maintainership to submitter PR: 107918 Submitted by: Marcelo Araujo <araujo@bsdmail.org> Notes: svn path=/head/; revision=182451
* Release maintainership since i don't use it anymoreRenato Botelho2006-08-091-1/+1
| | | | Notes: svn path=/head/; revision=170185
* Remove USE_REINPLACE from all categories starting with NEdwin Groothuis2006-05-111-2/+0
| | | | Notes: svn path=/head/; revision=162141
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-1/+1
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154116
* - Add SHA256Renato Botelho2005-11-081-0/+1
| | | | Notes: svn path=/head/; revision=147578
* - Update to 3.3.4p6Renato Botelho2005-09-292-3/+3
| | | | Notes: svn path=/head/; revision=143800
* Change MAINTAINER to my @FreeBSD.org accountRenato Botelho2005-07-111-1/+1
| | | | | | | Approved by: flz (mentor) Notes: svn path=/head/; revision=138919
* Fix plistRoman Bogorodskiy2005-05-051-1/+4
| | | | Notes: svn path=/head/; revision=134641
* Fix docs handlingRoman Bogorodskiy2005-05-041-2/+1
| | | | | | | Discussed with: Renato Botelho (maintainer) Notes: svn path=/head/; revision=134620
* - Fix wrong var name LIST_SUB -> PLIST_SUBYen-Ming Lee2005-04-251-1/+1
| | | | | | | | PR: 80326 Submitted by: Renato Botelho <freebsd@galle.com.br> Notes: svn path=/head/; revision=134143
* Fix package building.Roman Bogorodskiy2005-04-241-1/+1
| | | | | | | | Reported by: pointyhat via kris Pointyhat to: novel Notes: svn path=/head/; revision=134059
* - update to 3.3.4Roman Bogorodskiy2005-04-233-24/+20
| | | | | | | | | | - pass maintainership to submitter PR: 80144 Submitted by: Renato Botelho <freebsd@galle.com.br> Notes: svn path=/head/; revision=134014
* Unbreak: Use PORTDOCS=*Volker Stolz2005-04-201-16/+1
| | | | Notes: svn path=/head/; revision=133733
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992