notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: irc/xchat/Makefile

Number of commits found: 119 (showing only 100 on this page)

1 | 2  »  

Saturday, 17 Mar 2018
08:38 tobik search for other commits by this committer
irc/xchat: Deprecate

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)
Original commitRevision:464765 
Monday, 25 Jul 2016
17:41 brd search for other commits by this committer
Fix connecting to servers with SSLv3 disabled to address POODLE.

PR:		142198
Submitted by:	lordsith49@hotmail.com, brnrd
Original commitRevision:419050 
Friday, 1 Apr 2016
14:08 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412347 
Thursday, 16 Apr 2015
06:35 amdmi3 search for other commits by this committer
- Add CPE info

Approved by:	portmgr blanket
Original commitRevision:384085 
Monday, 20 Oct 2014
17:52 mva search for other commits by this committer
- Convert ports of irc/ and lang/ to new USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371288 
Tuesday, 2 Sep 2014
14:24 tijl search for other commits by this committer
Add missing library libgmodule-2.0

Reported by:	antoine
Original commitRevision:367009 
Wednesday, 23 Jul 2014
10:28 tijl search for other commits by this committer
Remove two libtool fixes from Mk/Uses/libtool.mk.  They don't always work
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)
Original commitRevision:362656 
Sunday, 22 Jun 2014
10:44 tijl search for other commits by this committer
Add 4 new sed commands to USES=libtool.  The first two apply some of the
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)
Original commitRevision:358784 
Wednesday, 11 Jun 2014
14:50 tijl search for other commits by this committer
Support LIBS like LDFLAGS.

- 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)
Original commitRevision:357486 
Thursday, 5 Jun 2014
20:27 kwm search for other commits by this committer
Fix build with gcc from ports. [1]
While here use USES=libtool, strip installed small update regarding LDFLAGS

PR:		178896 [1]
Submitted by:	kvedulv@kvedulv.de
Patch by:	avg@ [1]
Original commitRevision:356700 
Tuesday, 1 Apr 2014
17:23 antoine search for other commits by this committer
Don't violate stagedir

Reported by:	poudriere
With hat:	portmgr
Original commitRevision:349862 
Friday, 14 Feb 2014
17:14 gahr search for other commits by this committer
- Convert to USES=tcl
- Convert to new LIB_DEPENDS format
- STAGE-clean
- Fix WWW line in pkg-descr
Original commitRevision:344285 
Friday, 20 Sep 2013
18:44 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
irc)
Original commitRevision:327736 
Thursday, 12 Sep 2013
17:55 az search for other commits by this committer
- convert to the new perl5 framework
- convert USE_GMAKE to Uses

Reviewed by:	kwm@
Approved by:	kwm@ (gnome@)
Original commitRevision:327099 
Monday, 2 Sep 2013
22:03 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:326103 
Wednesday, 24 Apr 2013
18:10 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 3)

Approved by:	portmgr (bapt)
Original commitRevision:316464 
Friday, 8 Mar 2013
10:51 kwm search for other commits by this committer
* Update the glib to 2.34.3 and gtk20 to 2.24.17 and gtk30 to 3.6.4 which
  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
Original commitRevision:313633 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Sunday, 20 May 2012
16:46 mezz search for other commits by this committer
Readd socks5 support by using net/dante instead of removal net/socks5.

PR:             ports/167826
Submitted by:   4721@hushmail.com <4721@hushmail.com>
Original commit
Sunday, 26 Feb 2012
18:44 jpaetzel search for other commits by this committer
Remove optional dep on net/socks5, which is exiting the ports tree.  With a bit
of mangling SOCKS5 functionality could be resurrected with net/dante

PR:     ports/165097
Submitted by:   jpaetzel
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- 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
Original commit
Tuesday, 13 Jul 2010
18:03 kwm search for other commits by this committer
Update to 2.8.8.

PR:             ports/148442
Submitted by:   "Joseph S. Atkinson" <jsa@wickedmachine.net>
Original commit
Monday, 31 May 2010
02:01 ade search for other commits by this committer
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Original commit
Monday, 10 May 2010
21:19 kwm search for other commits by this committer
Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this
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
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Saturday, 22 Aug 2009
00:24 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with H,I,J,K,L
Original commit
Friday, 31 Jul 2009
13:57 dinoex search for other commits by this committer
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by:   edwin
Original commit
Sunday, 22 Mar 2009
19:41 marcus search for other commits by this committer
Mark SOCKS5 support as only for i386 since it will cause 64-bit apps to
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.
Original commit
Tuesday, 3 Mar 2009
04:11 marcus search for other commits by this committer
* Switch to USE_TCL infrastructure
* Add support for tcl85

PR:             130187
Submitted by:   mm
Original commit
Saturday, 10 Jan 2009
05:22 marcus search for other commits by this committer
Presenting GNOME 2.24 for FreeBSD.

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
Original commit
Monday, 4 Aug 2008
02:46 mezz search for other commits by this committer
Various small fixes, bump the PORTREVISION.

Obtained from:  http://www.xchat.org/files/source/2.8/patches/
Original commit
Saturday, 14 Jun 2008
16:25 mezz search for other commits by this committer
Update to 2.8.6.
Original commit
Friday, 6 Jun 2008
13:36 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

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)
Original commit
Monday, 24 Mar 2008
04:52 mezz search for other commits by this committer
The buffers need to be larger for some translations to fix the crash. Bump the
PORTREVISION.

PR:             ports/118659
Reported by:    Kyryll A Mirnenko <mirya@zoc.com.ua>
Obtained from:  Its CVS.
Original commit
Wednesday, 12 Dec 2007
05:55 mezz search for other commits by this committer
Scrollback shrinking code forgets to close(), bump the PORTREVISION.

Obtained from:  http://xchat.org/files/source/2.8/patches/
Original commit
Thursday, 18 Oct 2007
17:13 mezz search for other commits by this committer
- Stops scrollback files growing too large by fixing the file-shrink code.
- 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/
Original commit
Sunday, 7 Oct 2007
05:45 linimon search for other commits by this committer
Set USE_PERL5/WANT_PERL as appropriate, for ports that either depend on
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
Original commit
Saturday, 28 Jul 2007
18:35 marcus search for other commits by this committer
* OPTIONSify
* 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>
Original commit
Wednesday, 11 Jul 2007
15:20 mezz search for other commits by this committer
Fix creation of ~/.xchat2/scrollback/ paths, bump the PORTREVISION.

Obtained from:  http://xchat.org/files/source/2.8/patches/
Original commit
Thursday, 5 Jul 2007
00:58 mezz search for other commits by this committer
Update to 2.8.4.
Original commit
Thursday, 7 Jun 2007
02:21 mezz search for other commits by this committer
Fix defunc processes created by opening tray balloons, bump the PORTREVISION.

Obtained from:  http://xchat.org/files/source/2.8/patches/
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Saturday, 14 Apr 2007
06:38 marcus search for other commits by this committer
Update tp 2.8.2.
Original commit
Monday, 26 Mar 2007
20:11 mezz search for other commits by this committer
Portlint:
        -Add '-[0-9]*' in the CONFLICT.
Original commit
Wednesday, 21 Mar 2007
21:35 mezz search for other commits by this committer
Fix Japanese translation error in 2.6.8 and 2.8.0 causes xchat NOT to run,
bump the PORTREVISION.

Submitted by:   Takeharu KATO <takeharu1219@ybb.ne.jp>
Original commit
Saturday, 6 Jan 2007
01:01 mezz search for other commits by this committer
Fix the /back and repeat /away if you are back. Also, it fixes in the Server ->
Away menu when you try to uncheck it. This patch was took from xchat2 CVS. Bump
the PORTREVISION.
Original commit
Friday, 5 Jan 2007
21:25 mezz search for other commits by this committer
Update to 2.8.0.

PR:             ports/107563
Submitted by:   Alex <goo@t72.ru>
Original commit
Monday, 18 Dec 2006
15:57 pav search for other commits by this committer
- Fix a security problem

Obtained from:  Peter Zelezny <zed@xchat.org> (author)
Original commit
Tuesday, 28 Nov 2006
14:44 pav search for other commits by this committer
- Force spellchecker feature to use gtkspell backend

PR:             ports/105949
Submitted by:   Alex <goo@t72.ru>
Original commit
Tuesday, 31 Oct 2006
02:39 marcus search for other commits by this committer
Update to 2.6.8.
Original commit
Saturday, 14 Oct 2006
08:54 marcus search for other commits by this committer
Chase the GNOME X11BASE to LOCALBASE move, and fix the build with the
new freetype2 where needed.

Submitted by:   mezz, ahze, pav, and many others
Approved by:    portmgr (implicit, kris)
Original commit
Thursday, 27 Jul 2006
15:32 marcus search for other commits by this committer
Update to 2.6.6.  See http://xchat.org/changelog.txt for a list of changes.
Original commit
Tuesday, 13 Jun 2006
22:31 mezz search for other commits by this committer
- Fix the invisible cursor color when using GTKSpell and a black input box
  (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.
Original commit
Saturday, 10 Jun 2006
07:11 marcus search for other commits by this committer
Update to 2.6.4.  See http://xchat.org/changelog.txt for a list of changes.

PR:             98775
Submitted by:   Tim Welch <ports@thepentagon.org>
Original commit
Sunday, 28 May 2006
12:35 pav search for other commits by this committer
- Rename ports

  irc/xchat -> irc/xchat1
  irc/xchat2 -> irc/xchat
Original commit
Tuesday, 7 Mar 2006
08:28 ade search for other commits by this committer
Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.

Discussed with: kris
Approved by:    portmgr (implicit)
Original commit
Saturday, 14 May 2005
21:46 sem search for other commits by this committer
- Move USE_OPENSSL and USE_PYTHON above of bsd.port.mk

PR:             ports/57502
Submitted by:   eik
Original commit
Wednesday, 26 Jan 2005
09:07 pav search for other commits by this committer
- Fix plist in non-GNOME case

Reported by:    krismail
Original commit
Saturday, 10 Apr 2004
17:26 trevor search for other commits by this committer
Tidy up whitespace.
Original commit
Wednesday, 31 Mar 2004
14:27 eivind search for other commits by this committer
Make the default config conform to RFC1122 (no public away messages).
Original commit
Tuesday, 30 Mar 2004
19:20 krion search for other commits by this committer
- Use USE_ICONV knob

Approved by:    portmgr
Original commit
Wednesday, 4 Feb 2004
05:21 marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 2)
Original commit
Monday, 15 Dec 2003
01:17 pav search for other commits by this committer
Jim Mock (jim) returned his commit bit, so set his ports free.

Thank for all your work, Jim!
Original commit
Saturday, 23 Aug 2003
01:03 perky search for other commits by this committer
Bump PORTREVISION after lang/python's changing default to
BUILD_STATIC. This affects to python embedding programs only.

Submitted by:   olgeni
Original commit
Sunday, 20 Apr 2003
19:24 marcus search for other commits by this committer
Remove USE_GNOMENG.
Original commit
Friday, 7 Mar 2003
06:04 ade search for other commits by this committer
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
Original commit
Sunday, 19 Jan 2003
00:09 jim search for other commits by this committer
Update to 1.8.11.

Submitted by:   Paolo Gatti <onel0ve@libero.it>
Tested by:      Munish Chopra <mchopra@engmail.uwaterloo.ca>
Original commit
Monday, 21 Oct 2002
16:25 marcus search for other commits by this committer
Update to 1.8.10.

PR:     44051
Approved by:    maintainer
Original commit
Sunday, 8 Sep 2002
03:47 jim search for other commits by this committer
Add USE_GNOME= gtk12 so configure actually finds gtk and builds the GUI.

Submitted by:   skrueger@europe.com
Original commit
Saturday, 31 Aug 2002
00:42 lioux search for other commits by this committer
Deploy USE_GNOMENG infrastructure

PR:             42204
Submitted by:   Edwin Groothuis <edwin@mavetju.org>
Approved by:    maintainer
Original commit
Sunday, 30 Jun 2002
22:28 jim search for other commits by this committer
Add a WITH_PYTHON knob.

PR:             39063
Submitted by:   Marc Recht <marc@informatik.uni-bremen.de>
Original commit
Sunday, 26 May 2002
22:47 jim search for other commits by this committer
Install xchat.desktop in the right place.

PR:             38565
Submitted by:   Alan Eldridge <ports@geeksrus.net>
Original commit
Saturday, 25 May 2002
23:19 jim search for other commits by this committer
Update to version 1.8.9.

PR:             38490
Submitted by:   Dominic Marks <dominic_marks@btinternet.com>
Original commit
Monday, 15 Apr 2002
17:05 sobomax search for other commits by this committer
GC tons of useless msgfmt:... in BUILD_DEPENDS, when libintl already in
LIB_DEPENDS.
Original commit
Friday, 12 Apr 2002
17:10 ade search for other commits by this committer
gettext upgrade uber-patch (stage 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
Original commit
Tuesday, 19 Mar 2002
12:52 sobomax search for other commits by this committer
Fix another few places where giconv used instead of iconv.

PR:             36059, 36063, 36082
Submitted by:   Joe Marcus Clarke <marcus@marcuscom.com>
Original commit
Monday, 18 Mar 2002
11:50 sobomax search for other commits by this committer
Iconv cleanup, stage 2b: remove regex hacks that change iconv.h to giconv.h and
-liconv to -lgiconv.
Original commit
10:27 knu search for other commits by this committer
Bump PORTREVISION to reflect the (lib)iconv upgrade.
Original commit
09:46 sobomax search for other commits by this committer
Iconv cleanup, stage 1b: correct {BUILD,LIB,RUN}_DEPENDS of all ports that need
libiconv.
Original commit
Friday, 15 Mar 2002
19:44 ade search for other commits by this committer
Stage 1 of gettext update.

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
Original commit
Friday, 8 Mar 2002
16:56 jim search for other commits by this committer
Update to version 1.8.8.    
Original commit
Friday, 18 Jan 2002
21:43 jim search for other commits by this committer
Keep up with the musical MASTER_SITES.  It should be done moving around   now
that xchat.org is back.    
Original commit
Sunday, 13 Jan 2002
09:04 jim search for other commits by this committer
Fix MASTER_SITES.    
Original commit
Friday, 11 Jan 2002
02:00 jim search for other commits by this committer
Update to version 1.8.7.    
Original commit
Wednesday, 28 Nov 2001
07:50 jim search for other commits by this committer
Update to version 1.8.6.  While I'm here, add a WITH_TRANSPARENCY knob   so that
non-GNOME users can get transparent windows if so desired.    
Original commit
Sunday, 25 Nov 2001
01:05 jim search for other commits by this committer
Argh.  Bump PORTREVISION.  I forgot to apply this in the last commit.    
Original commit
Saturday, 3 Nov 2001
11:51 jim search for other commits by this committer
Update to version 1.8.5.  Re-enable building with perl since xchat has   been
fixed to compile with versions older than 5.6.    
Original commit
Tuesday, 9 Oct 2001
22:11 jim search for other commits by this committer
Add --enable-zvt if compiled with GNOME support so things will work   properly. 
  
Original commit
Tuesday, 2 Oct 2001
23:41 jim search for other commits by this committer
Update to version 1.8.4.  Perl support is currently disabled for systems   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).    
Original commit
Wednesday, 5 Sep 2001
21:12 knu search for other commits by this committer
Fix installation and packaging with GNOME.    
Original commit
Tuesday, 4 Sep 2001
20:38 knu search for other commits by this committer
- Enable NLS using the latest version of msgfmt   - 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    
Original commit
Friday, 27 Jul 2001
00:04 jim search for other commits by this committer
Update to version 1.8.2.    
Original commit
Friday, 20 Jul 2001
15:38 jim search for other commits by this committer
Update to version 1.8.1.    
Original commit
Thursday, 28 Jun 2001
17:28 jim search for other commits by this committer
Update this to the latest and greatest "stable" version, which is 1.8.0.   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.    
Original commit
Thursday, 29 Mar 2001
16:35 sobomax search for other commits by this committer
-pthread --> ${PTHREAD_LIBS}   -D_THREAD_SAFE --> ${PTHREAD_CFLAGS}    
Original commit
Friday, 16 Feb 2001
22:51 jim search for other commits by this committer
Update to version 1.6.4.    
Original commit
Thursday, 11 Jan 2001
15:50 jim search for other commits by this committer
Update to 1.6.3.    
Original commit
Monday, 11 Dec 2000
19:03 jim search for other commits by this committer
Update to version 1.6.2.    
Original commit
Monday, 27 Nov 2000
20:37 jim search for other commits by this committer
Update to version 1.6.1.  This is a bug-fix release, and if you're using  
1.6.0, I suggest you upgrade.    
Original commit

Number of commits found: 119 (showing only 100 on this page)

1 | 2  »