aboutsummaryrefslogtreecommitdiffstats
path: root/irc/xchat
Commit message (Collapse)AuthorAgeFilesLines
* Remove expired port irc/xchat and plugins:Rene Ladan2018-04-188-267/+0
| | | | | | | 2018-04-15 irc/xchat: Unmaintained upstream, use irc/hexchat instead irc/xchat-fish irc/xchat-mircryption irc/xchat-ruby
* irc/xchat: DeprecateTobias Kortkamp2018-03-171-0/+3
| | | | | | | | | | | It's unmaintained with likely many unpatched security issues. irc/hexchat is an actively maintained fork of XChat which can be used instead. https://tingping.github.io/2018/03/02/when-distros-get-it-wrong.html PR: 226322 Approved by: gnome (maintainer timeout, 2 weeks)
* Fix connecting to servers with SSLv3 disabled to address POODLE.Brad Davis2016-07-262-1/+22
| | | | | PR: 142198 Submitted by: lordsith49@hotmail.com, brnrd
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-6/+6
| | | | | With hat: portmgr Sponsored by: Absolight
* - Add CPE infoDmitry Marakasov2015-04-161-1/+1
| | | | Approved by: portmgr blanket
* Cleanup plistBaptiste Daroussin2014-10-271-3/+1
|
* - Convert ports of irc/ and lang/ to new USES=pythonMarcus von Appen2014-10-211-1/+1
| | | | Approved by: portmgr (implicit)
* Add missing library libgmodule-2.0Tijl Coosemans2014-09-021-0/+3
| | | | Reported by: antoine
* Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always workTijl Coosemans2014-07-231-2/+0
| | | | | | | | | | | | | | | | | | | | when an older version of a package is installed. This is the case when an executable links with installed libraries and with uninstalled libraries that link with other uninstalled libraries. For each of the directly linked libraries the executable will have an rpath (/usr/local/lib for the installed libraries and a path under WRKDIR for each of the uninstalled libraries), but not for the indirect libraries. Both ld(1) and rtld(1) search the rpath of the executable first before any rpath of libraries, so the indirectly linked libraries will be found in /usr/local/lib if they are installed instead of in WRKDIR. With this commit executables will overlink with uninstalled indirect libraries again so their location is added to the rpath of the executable. This partially reverts r358784. PR: 191611 Approved by: portmgr (bapt)
* Add 4 new sed commands to USES=libtool. The first two apply some of theTijl Coosemans2014-06-221-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine)
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-8/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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)
* Fix build with gcc from ports. [1]Koop Mast2014-06-063-7/+14
| | | | | | | | While here use USES=libtool, strip installed small update regarding LDFLAGS PR: 178896 [1] Submitted by: kvedulv@kvedulv.de Patch by: avg@ [1]
* Don't violate stagedirAntoine Brodin2014-04-021-1/+1
| | | | | Reported by: poudriere With hat: portmgr
* - Convert to USES=tclPietro Cerutti2014-02-152-9/+8
| | | | | | - Convert to new LIB_DEPENDS format - STAGE-clean - Fix WWW line in pkg-descr
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | the mtree (categories starting with [fgijk]) Approved by: portmgr (bdrewery)
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-211-0/+1
| | | | irc)
* - convert to the new perl5 frameworkAndrej Zverev2013-09-131-4/+2
| | | | | | | - convert USE_GMAKE to Uses Reviewed by: kwm@ Approved by: kwm@ (gnome@)
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-031-1/+1
|
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-251-1/+1
| | | | Approved by: portmgr (bapt)
* * Update the glib to 2.34.3 and gtk20 to 2.24.17 and gtk30 to 3.6.4 whichKoop Mast2013-03-081-45/+29
| | | | | | | | | | | | | | | | | | | | are the latest stable releases. * Update vala to the newest stable release 0.18.1, also update a few ports in the gtk/gnome stack. * The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles. * Remove pkg-config run depends from glib20 and freetype2. This doesn't eliminate pkg-config run dependency completely, a second phase is needed and is planned. * Support for .:run. and .:build. for USE_GNOME components was added. Currently only libxml2 and libxslt support this mechanism. * Updates of the telepathy stack and empathy. * Trim makefile headers, convert ports to new options, trim off library versions for some ports. * Fix other ports so they build with the new glib version. Thanks to miwi and crees for helping out with some exp-runs. Approved by: portmgr (miwi & bapt) Obtained from: gnome team repo
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+1
|
* Readd socks5 support by using net/dante instead of removal net/socks5.Jeremy Messenger2012-05-212-0/+70
| | | | | PR: ports/167826 Submitted by: 4721@hushmail.com <4721@hushmail.com>
* Remove optional dep on net/socks5, which is exiting the ports tree. With a bitJosh Paetzel2012-02-271-8/+1
| | | | | | | of mangling SOCKS5 functionality could be resurrected with net/dante PR: ports/165097 Submitted by: jpaetzel
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-241-5/+5
| | | | | | | | | - 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
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
|
* Update to 2.8.8.Koop Mast2010-07-145-90/+14
| | | | | PR: ports/148442 Submitted by: "Joseph S. Atkinson" <jsa@wickedmachine.net>
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
|
* Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for thisKoop Mast2010-05-111-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.30/ . This release brings initial PackageKit support, Upower (replaces power management part of hal), cuse4bsd integration with HAL and cheese, and a faster Evolution. Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This will also be the last of the 2.x releases. The next release will be the highly-anticipated GNOME 3.0 which will bring with it a new UI experience. Currently, there are a few bugs with GNOME 2.30 that may be of note for our users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading instructions, and the up-to-date list of known issues. This release features commits by avl, ahze, bland, marcus, mezz, and myself. The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the initual packagekit porting. And the following contributors & testers for there help with this release: Eric L. Chen Vladimir Grebenschikov Sergio de Almeida Lenzi DomiX walder crsd Kevin Oberman Michal Varga Pavel Plesov Bapt kevin and ITetcu for two exp-run PR: ports/143852 ports/145347 ports/144980 ports/145830 ports/145511
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
|
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+2
| | | | starting with H,I,J,K,L
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-1/+1
| | | | | | bumped or updated Requested by: edwin
* Mark SOCKS5 support as only for i386 since it will cause 64-bit apps toJoe Marcus Clarke2009-03-231-0/+1
| | | | | | | | | | crash as it lacks prototype definitions for functions such as SOCKSlocaltime, SOCKSread, etc. These functions return 64-bit values, but will get truncated to 32-bit values without proper prototypes. I looked at net/socks5, but it does not appear to be engineered in a way to provide these prototypes to external consumers. The socks5 port needs to be updated so that it works with INCLUDE_PROTOTYPES on FreeBSD.
* * Switch to USE_TCL infrastructureJoe Marcus Clarke2009-03-031-4/+5
| | | | | | | * Add support for tcl85 PR: 130187 Submitted by: mm
* Presenting GNOME 2.24 for FreeBSD.Joe Marcus Clarke2009-01-102-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See http://library.gnome.org/misc/release-notes/2.24/ for the general release notes. On the FreeBSD front, this release introduces Fuse support in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some long-standing seahorse and gnome-keyring bugs. The documentation updates to the website are forthcoming. This release features commits by adamw, ahze, kwm, mezz, and myself. It would not have been possible without are contributors and testers: Alexander Loginov Craig Butler [1] Dmitry Marakasov [6] Eric L. Chen Joseph S. Atkinson Kris Moore Lapo Luchini [7] Nikos Ntarmos Pawel Worach Romain Tartiere TAOKA Fumiyoshi [3] Yasuda Keisuke Zyl aZ [4] bf [2] [5] Florent Thoumie Peter Wemm pluknet PR: 125857 [1] 126993 [2] 130031 [3] 127399 [4] 127661 [5] 124302 [6] 129570 [7] 129936 123790
* Various small fixes, bump the PORTREVISION.Jeremy Messenger2008-08-042-0/+69
| | | | Obtained from: http://www.xchat.org/files/source/2.8/patches/
* Update to 2.8.6.Jeremy Messenger2008-06-157-102/+5
|
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
* The buffers need to be larger for some translations to fix the crash. Bump theJeremy Messenger2008-03-242-1/+23
| | | | | | | | PORTREVISION. PR: ports/118659 Reported by: Kyryll A Mirnenko <mirya@zoc.com.ua> Obtained from: Its CVS.
* Scrollback shrinking code forgets to close(), bump the PORTREVISION.Jeremy Messenger2007-12-122-1/+15
| | | | Obtained from: http://xchat.org/files/source/2.8/patches/
* - Stops scrollback files growing too large by fixing the file-shrink code.Jeremy Messenger2007-10-192-1/+29
| | | | | | | | - Puts a "Display scrollback from previous session" into the Setup GUI (logging section) so people can turn this off without typing commands. - Bump the PORTREVISION. Obtained from: http://xchat.org/files/source/2.8/patches/
* Set USE_PERL5/WANT_PERL as appropriate, for ports that either depend onMark Linimon2007-10-071-0/+1
| | | | | | | | perl unconditonally, or conditionally. To be able to conditionalize the inclusion of bsd.perl.mk, they now need to be defined before the inclusion of bsd.port.pre.mk. Hat: portmgr
* * OPTIONSifyJoe Marcus Clarke2007-07-291-58/+59
| | | | | | | | | | * Add spell check support for libsexy (default: off) * Add runtime dependency on libnotify and notification-daemon * Remove obsolete Perl version checks * Depend on TCL 8.4 instead of 8.3 PR: 114453 Submitted by: Yuri Pankov <yuri@darklight.org.ru>
* Fix creation of ~/.xchat2/scrollback/ paths, bump the PORTREVISION.Jeremy Messenger2007-07-112-0/+34
| | | | Obtained from: http://xchat.org/files/source/2.8/patches/
* Update to 2.8.4.Jeremy Messenger2007-07-055-28/+13
|
* Fix defunc processes created by opening tray balloons, bump the PORTREVISION.Jeremy Messenger2007-06-072-1/+15
| | | | Obtained from: http://xchat.org/files/source/2.8/patches/
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-202-25/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* Update tp 2.8.2.Joe Marcus Clarke2007-04-145-30/+13
|
* Portlint:Jeremy Messenger2007-03-271-1/+1
| | | | -Add '-[0-9]*' in the CONFLICT.
* Fix Japanese translation error in 2.6.8 and 2.8.0 causes xchat NOT to run,Jeremy Messenger2007-03-222-1/+15
| | | | | | bump the PORTREVISION. Submitted by: Takeharu KATO <takeharu1219@ybb.ne.jp>
* Fix the /back and repeat /away if you are back. Also, it fixes in the Server ->Jeremy Messenger2007-01-062-0/+12
| | | | | Away menu when you try to uncheck it. This patch was took from xchat2 CVS. Bump the PORTREVISION.
* Update to 2.8.0.Jeremy Messenger2007-01-064-19/+14
| | | | | PR: ports/107563 Submitted by: Alex <goo@t72.ru>
* - Fix a security problemPav Lucistnik2006-12-182-1/+13
| | | | Obtained from: Peter Zelezny <zed@xchat.org> (author)
* - Force spellchecker feature to use gtkspell backendPav Lucistnik2006-11-281-0/+2
| | | | | PR: ports/105949 Submitted by: Alex <goo@t72.ru>
* Update to 2.6.8.Joe Marcus Clarke2006-10-314-33/+11
|
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with theJoe Marcus Clarke2006-10-142-4/+17
| | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris)
* Update to 2.6.6. See http://xchat.org/changelog.txt for a list of changes.Joe Marcus Clarke2006-07-273-19/+4
|
* - Fix the invisible cursor color when using GTKSpell and a black input boxJeremy Messenger2006-06-143-2/+26
| | | | | | | (when "Use the text box font & colors" is ON). Took from xchat CVS. - Fix the plist when disable dbus support. - Add a new knob, WITHOUT_GTKSPELL, to disable spell check support. - Bump the PORTREVISION.
* Update to 2.6.4. See http://xchat.org/changelog.txt for a list of changes.Joe Marcus Clarke2006-06-103-4/+6
| | | | | PR: 98775 Submitted by: Tim Welch <ports@thepentagon.org>
* - Rename portsPav Lucistnik2006-05-287-129/+144
| | | | | irc/xchat -> irc/xchat1 irc/xchat2 -> irc/xchat
* Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.Ade Lovett2006-03-071-1/+1
| | | | | Discussed with: kris Approved by: portmgr (implicit)
* eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-3/+3
| | | | | Approved by: krion@ PR: ports/88711 (related)
* - Add SHA256Pav Lucistnik2005-11-261-0/+1
|
* Directory share/pixmaps is now included in mtreeDejan Lesjak2005-06-151-1/+0
| | | | (BSD.x11-4.dist rev. 1.27), so remove it from plist.
* - Move USE_OPENSSL and USE_PYTHON above of bsd.port.mkSergey Matveychuk2005-05-151-13/+13
| | | | | PR: ports/57502 Submitted by: eik
* - Fix plist in non-GNOME casePav Lucistnik2005-01-262-1/+7
| | | | Reported by: krismail
* Tidy up whitespace.Trevor Johnson2004-04-111-1/+1
|
* Make the default config conform to RFC1122 (no public away messages).Eivind Eklund2004-03-312-1/+12
|
* - Use USE_ICONV knobKirill Ponomarev2004-03-311-2/+1
| | | | Approved by: portmgr
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-1/+1
| | | | (Part 2)
* SIZEify.Trevor Johnson2004-01-291-0/+1
|
* Jim Mock (jim) returned his commit bit, so set his ports free.Pav Lucistnik2003-12-151-1/+1
| | | | Thank for all your work, Jim!
* Bump PORTREVISION after lang/python's changing default toHye-Shik Chang2003-08-231-0/+1
| | | | | | BUILD_STATIC. This affects to python embedding programs only. Submitted by: olgeni
* Remove USE_GNOMENG.Joe Marcus Clarke2003-04-211-1/+0
|
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
* Update to 1.8.11.Jim Mock2003-01-193-46/+6
| | | | | Submitted by: Paolo Gatti <onel0ve@libero.it> Tested by: Munish Chopra <mchopra@engmail.uwaterloo.ca>
* Update to 1.8.10.Joe Marcus Clarke2002-10-224-2/+55
| | | | | PR: 44051 Approved by: maintainer
* Add USE_GNOME= gtk12 so configure actually finds gtk and builds the GUI.Jim Mock2002-09-081-0/+1
| | | | Submitted by: skrueger@europe.com
* Deploy USE_GNOMENG infrastructureMario Sergio Fujikawa Ferreira2002-08-311-3/+3
| | | | | | PR: 42204 Submitted by: Edwin Groothuis <edwin@mavetju.org> Approved by: maintainer
* Add a WITH_PYTHON knob.Jim Mock2002-07-011-2/+8
| | | | | PR: 39063 Submitted by: Marc Recht <marc@informatik.uni-bremen.de>
* Install xchat.desktop in the right place.Jim Mock2002-05-271-1/+2
| | | | | PR: 38565 Submitted by: Alan Eldridge <ports@geeksrus.net>
* Update to version 1.8.9.Jim Mock2002-05-262-3/+2
| | | | | PR: 38490 Submitted by: Dominic Marks <dominic_marks@btinternet.com>
* GC tons of useless msgfmt:... in BUILD_DEPENDS, when libintl already inMaxim Sobolev2002-04-161-1/+0
| | | | LIB_DEPENDS.
* gettext upgrade uber-patch (stage 3)Ade Lovett2002-04-131-4/+3
| | | | | | | | | | - switch devel/gettext (0.11.1) on, installing full package - flip devel/gettext-old (0.10.35) to installing only static binaries with a "-old" suffix -- gettext-old will have its deorbit burn sequence initiated just after 4.6-RELEASE - fix up ports for the new world order Reviewed by: portmgr
* Fix another few places where giconv used instead of iconv.Maxim Sobolev2002-03-191-1/+1
| | | | | PR: 36059, 36063, 36082 Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
* Iconv cleanup, stage 2b: remove regex hacks that change iconv.h to giconv.h andMaxim Sobolev2002-03-181-3/+0
| | | | -liconv to -lgiconv.
* Bump PORTREVISION to reflect the (lib)iconv upgrade.Akinori MUSHA2002-03-181-0/+1
|
* Iconv cleanup, stage 1b: correct {BUILD,LIB,RUN}_DEPENDS of all ports that needMaxim Sobolev2002-03-181-1/+1
| | | | libiconv.
* Stage 1 of gettext update.Ade Lovett2002-03-161-1/+1
| | | | | | | | | | | | Move gettext (0.10.35) with gettext-old Update gettext from gettext-devel (0.10.40) Remove gettext-devel Fix dependencies Stage 2 will involve upgraded gettext to 0.11 and fixing issues Stage 3 involves a de-orbit burn sequence for gettext-old Reviewed by: portmgr
* Update to version 1.8.8.Jim Mock2002-03-092-2/+2
| | | | Reminded by: Muhannad Asfour <muhannad@cogeco.ca>
* Keep up with the musical MASTER_SITES. It should be done moving aroundJim Mock2002-01-191-1/+2
| | | | | | now that xchat.org is back. Submitted by: Joe Clarke <marcus@marcuscom.com>
* Fix MASTER_SITES.Jim Mock2002-01-131-2/+1
| | | | | PR: 33830 Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
* Update to version 1.8.7.Jim Mock2002-01-113-2/+3
|
* Update to version 1.8.6. While I'm here, add a WITH_TRANSPARENCY knobJim Mock2001-11-284-67/+8
| | | | so that non-GNOME users can get transparent windows if so desired.
* Argh. Bump PORTREVISION. I forgot to apply this in the last commit.Jim Mock2001-11-251-0/+1
|
* Add two patches -- one fixes dccs autoresume, and the other fixes xchatJim Mock2001-11-252-0/+63
| | | | | | | when used with bnc. Prodded by: David Hill <david@phobia.ms> Obtained from: xchat.org
* Update to version 1.8.5. Re-enable building with perl since xchat hasJim Mock2001-11-032-8/+4
| | | | been fixed to compile with versions older than 5.6.
* Add --enable-zvt if compiled with GNOME support so things will workJim Mock2001-10-101-2/+4
| | | | | | | properly. PR: 31133 Submitted by: TOGAWA Satoshi <toga@puyo.org>
* Update to version 1.8.4. Perl support is currently disabled for systemsJim Mock2001-10-032-2/+6
| | | | | | | | older than 500007 since it now needs Perl 5.6 to compile (at least until I get around to adding a knob to make using the Perl 5.6 port an option). Partially submitted by: knu
* Fix installation and packaging with GNOME.Akinori MUSHA2001-09-061-5/+3
|
* - Enable NLS using the latest version of msgfmtAkinori MUSHA2001-09-053-12/+53
| | | | | | | | | - Enable IPv6 - Configure with --without-included-gettext and remove a hack - Link with iconv for ja-xchat (and other potential slave ports) - Update to 1.8.3 Approved by: jim (MAINTAINER)
* Update to version 1.8.2.Jim Mock2001-07-272-2/+2
|
* Update to version 1.8.1.Jim Mock2001-07-203-17/+17
| | | | | PR: 29065 Submitted by: Patrick Li <pat@databits.net>
* Update this to the latest and greatest "stable" version, which is 1.8.0.Jim Mock2001-06-293-31/+5
| | | | | | As with the 1.7 development series, NLS is disabled because it needs gettext 0.10.38 to work, which we don't have yet. For more info on the current state of gettext, see the -ports archives.
* -pthread --> ${PTHREAD_LIBS}Maxim Sobolev2001-03-301-1/+1
| | | | | | | -D_THREAD_SAFE --> ${PTHREAD_CFLAGS} Note: my first intention was to test this out on bento/beta, but per ade's requiest I opted to do it quickly.
* PLIST fixes I forgot in my last commit.Jim Mock2001-02-171-0/+3
| | | | Submitted by: vanilla
* Update to version 1.6.4.Jim Mock2001-02-172-2/+2
|
* Update to 1.6.3.Jim Mock2001-01-112-2/+2
|
* Update to version 1.6.2.Jim Mock2000-12-123-2/+11
|
* Update to version 1.6.1. This is a bug-fix release, and if you're usingJim Mock2000-11-282-3/+2
| | | | 1.6.0, I suggest you upgrade.
* Bring in the SSL support from the xchat-devel port.Jim Mock2000-11-261-0/+5
| | | | | PR: 23092 Submitted by: Ron Rosson <insane@lunatic.oneinsane.net>
* Bump PORTREVISION.Jim Mock2000-11-231-0/+1
|
* Update to version 1.6.0, the latest and greatest "stable" version. WhileJim Mock2000-11-162-20/+20
| | | | I'm here, clean up some whitespace.
* Fix japanese/xchat which had been broken by the last two commits onAkinori MUSHA2000-11-071-2/+7
| | | | | | | | | | | | irc/xchat. As japanese/xchat "built" without a problem, I didn't notice it was "broken"... In reality, the configure script failed to detect the iconv library because of the removal of CPPFLAGS and LIBS in CONFIGURE_ENV, therefore the built binary lacked Japanese support. (i.e. the ja-xchat package included in 4.2-RELEASE will be broken) To avoid this kind of sad accidents in future, add a note to irc/xchat that it has a slave port and one should be careful not to overwrite variables or targets.
* Implement WANT_GNOME.Jeremy Lea2000-10-051-35/+19
|
* Whitespace changes, and sort PLISTs.Jeremy Lea2000-10-032-40/+40
|
* Prepare for slave (satellite) ports.Akinori MUSHA2000-10-011-4/+3
| | | | Approved by: jim (MAINTAINER)
* Clean up the PLIST handling. There is now only one PLIST to maintain.Jim Mock2000-09-082-4/+4
| | | | Submitted by: ade
* Update to version 1.4.3. According to the author, this release fixes someJim Mock2000-08-272-2/+2
| | | | bugs, including the security issue mentioned on SecurityFocus.
* Knock the version back to 1.4.2 due to popular demand. There is now anJim Mock2000-08-263-19/+4
| | | | xchat-devel port for those who want the latest version.
* Update to version 1.5.6Jim Mock2000-07-283-3/+3
|
* Correct pkg/PLIST*Vanilla I. Shu2000-07-161-0/+3
|
* Update to version 1.5.5Jim Mock2000-06-282-2/+2
|
* Update to version 1.5.4.Jim Mock2000-06-202-2/+2
|
* Fix up the GNOME dependencies and use devel/gettext instead of xchat's ownJim Mock2000-06-131-6/+10
| | | | | | local libintl. Submitted by: ade
* If we have gnomecore, we have gdk-pixbuf too.Jim Mock2000-06-061-0/+4
| | | | Submitted by: ade
* Update to version 1.5.3, and add a WITH_GDK_PIXBUF knob.Jim Mock2000-06-062-3/+15
|
* Updates for new shared library versions in GNOME 1.2Ade Lovett2000-06-021-2/+2
|
* Enable NLS support. It works now!Jim Mock2000-05-262-1/+16
| | | | Submitted by: cpiazza
* Fix the DESCR file to actually be a DESCR and not half of one with an MD5Jim Mock2000-05-261-3/+5
| | | | | | checksum. Submitted by: Clive Lin <clive@CirX.ORG>
* Update to version 1.5.2.Jim Mock2000-05-262-2/+2
|
* Whoops, 1.4 in the MASTER_SITES should be 1.5. I guess that's what I getJim Mock2000-04-261-2/+2
| | | | | | for fetching the tarball manually first. Submitted by: Clive Lin <clive@CirX.ORG>
* Update to version 1.5.0.Jim Mock2000-04-252-2/+2
|
* whitespace nitsMichael Haro2000-04-221-26/+26
|
* Standardize all user defined options to the booleans WITH_FOO andJeremy Lea2000-04-171-6/+6
| | | | | | | WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
* Add SOCKS support.Jim Mock2000-04-151-0/+7
| | | | Submitted by: dburr
* Convert to the PORTNAME - PORTVERSION syntax.David E. O'Brien2000-04-121-2/+2
|
* Update to version 1.4.2.Jim Mock2000-04-072-3/+3
|
* Update to version 1.4.1Jim Mock2000-03-102-3/+3
|
* Say hello to xchat-1.4.0. This is the first 'stable' release in aboutJim Mock2000-02-122-5/+5
| | | | 6 months (according to the xchat.org site).
* Update to version 1.3.14.Jim Mock2000-02-092-3/+3
|
* Update to 1.3.13.Jim Mock2000-01-312-3/+3
| | | | Prodded by: green
* Update to version 1.3.12Jim Mock2000-01-252-3/+3
|
* Update to version 1.3.11.Jim Mock2000-01-203-4/+11
| | | | Reviewed by: unfurl
* Update to version 1.3.10Jim Mock2000-01-072-3/+3
|
* Fix MASTER_SITES so this distfile is actually fetchable now.Jim Mock1999-12-231-2/+2
|
* Update to version 1.3.8Jim Mock1999-11-232-3/+3
|
* Updated to version 1.3.7Jim Mock1999-11-102-6/+3
|
* Update to version 1.3.6. This version is the first with pythonJim Mock1999-11-032-4/+7
| | | | | scripting support, however, it's temporarily disabled until it becomes less buggy (read: usable).
* Depend on gnomelibs if USE_GNOME is definedJim Mock1999-10-261-0/+3
|
* Updated to version 1.3.5Jim Mock1999-10-252-4/+4
|
* Use updated imlib library.Yukihiro Nakai1999-10-081-1/+1
|
* Updated to version 1.3.4Jim Mock1999-10-052-3/+3
|
* Updated to version 1.3.3Jim Mock1999-10-022-5/+6
|
* Attack of the COMMENT police. Fixed a bunch of typos, grammaticalJim Mock1999-10-021-1/+1
| | | | | | | errors and descriptions. PR: 14031 Submitted by: chris
* Updated to version 1.2.1Jim Mock1999-09-192-3/+3
|
* Fixed download path in MASTER_SITES.Jim Mock1999-09-021-2/+2
| | | | Submitted by: obrien
* Updated to version 1.2.0Jim Mock1999-09-012-4/+3
|
* Added imlib dependency.Jim Mock1999-08-311-1/+2
| | | | Submitted by: obrien
* Updated to version 1.1.9Jim Mock1999-08-302-3/+3
|
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
|
* chmod -> ${CHMOD}Michael Haro1999-08-231-2/+2
| | | | chown -> ${CHOWN}
* Updated to version 1.1.8.Jim Mock1999-08-162-4/+4
|
* Updated to version 1.1.7Jim Mock1999-08-123-11/+9
|
* Fix WWW: typosBill Fenner1999-08-011-1/+1
| | | | | Found by: not-yet-completed addition to port distfile checker suggested by Tim Vanderhoek
* Update to version 1.1.6Chris Piazza1999-08-012-6/+6
| | | | | PR: 12893 Submitted by: Jim Mock <jim@blues.ghis.net>, maintainer
* Allow for a USE_GNOME and USE_PANEL option to enable theirChris Piazza1999-07-211-2/+14
| | | | | | | respective configure args instead of always disabling them. PR: 12706 Submitted by: Chris Costello <chris@calldei.com>
* Update to version 1.1.3Chris Piazza1999-07-192-4/+4
| | | | | PR: 12704 Submitted by: Jim Mock <jim@phrantic.phear.net>, maintainer
* Update to 1.1.2Chris Piazza1999-07-173-18/+5
| | | | | PR: 12671 Submitted by: maintainer
* Update to version 1.1.0.Chris Piazza1999-07-053-10/+26
| | | | | PR: 12504 Submitted by: maintainer
* Update to xchat-1.0.0Chris Piazza1999-07-012-4/+4
| | | | | PR: 12460 Submitted by: maintainer
* New ports/{java,irc,x11-servers} categories, Step #4 - Adjust new Makefiles.Bill Fumerola1999-06-281-2/+2
|
* Commit #3/4 to enforce caps, no period.Tim Vanderhoek1999-06-271-1/+1
| | | | | | | | | | | | FWIW, checkout of these things took 5+hrs, staying on the local .freebsd.org net w/o hitting the 'net at all. As promised, $ time cvs ci real 67m51.701s user 0m1.250s sys 0m5.345s
* Update xchat to 0.9.9.Chris Piazza1999-06-213-5/+6
| | | | | PR: 12314 Submitted by: maintainer
* Update to version 0.9.6.Steve Price1999-06-092-5/+5
| | | | | PR: 11756 Submitted by: maintainer
* Update to use gtk version 1.2.3.Steve Price1999-05-291-5/+6
| | | | | PR: 11842 Submitted by: Jeremy Lea <reg@shale.csir.co.za>
* Update to version 0.9.5.Steve Price1999-05-103-7/+29
| | | | | PR: 11574 Submitted by: maintainer
* WWW: This is definately the daemon's work. In Chuck we trust.Michael Haro1999-05-031-1/+1
|
* Scratch that last one. The PR was really 10829.Steve Price1999-03-311-1/+1
|
* Update to version 0.9.4.Steve Price1999-03-312-4/+4
| | | | | PR: 10797 Submitted by: maintainer
* Update to 0.9.3Seiichirou Hiraoka1999-03-212-7/+11
| | | | | PR: ports/10706 Submitted by: jim@phrantic.phear.net
* Update 0.5.1 -> 0.9.1.Jacques Vidrine1999-03-063-8/+7
| | | | Submitted by: maintainer, Jim Mock <phrantic.phear.net>
* Upgrade to 0.5.1.Vanilla I. Shu1999-01-182-8/+9
|
* Move MASTER_SITES to new location.SADA Kenji1998-12-091-2/+2
| | | | | PR: ports/9004 Submitted by: Jim Mock <jim@corp.au.triax.com>
* Typo (PORSDIR -> PORTSDIR).Satoshi Asami1998-11-231-2/+2
|
* Upgrade to 0.3.1.Vanilla I. Shu1998-11-192-14/+16
| | | | | If you want to depend with library, use LIB_DEPENDS, not RUN_DEPENDS.
* PR: ports/8718Seiichirou Hiraoka1998-11-195-0/+31
Submitted by: jim@phrantic.phear.net Initial Import xchat. X-Chat is a X11 (X Window System) IRC client, using the GTK+ toolkit.