forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPDATING
7413 lines (5562 loc) · 263 KB
/
UPDATING
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This file documents some of the problems you may encounter when
upgrading your ports. We try our best to minimize these disruptions,
but sometimes they are unavoidable.
You should get into the habit of checking this file for changes each
time you update your ports collection, before attempting any port
upgrades.
20081217:
AFFECTS: users of mail/policyd2
AUTHOR: [email protected]
The RC script for mail/policyd2 has been renamed to avoid a conflict. If
you use this port please change the setting in rc.conf to be
policyd2_enable.
20081211:
AFFECTS: users of lang/php5
As of php 5.2.7, pcre extension is distributed with the core php5 package,
and not as a standalone module anymore. Follow these steps to update your
installation:
Portupgrade users:
pkg_delete -f php5-pcre-5.2.6
pkgdb -F
portupgrade as usual
Portmaster users:
pkg_delete -f php5-pcre\*
portmaster php5\*
If you are using pecl ports you might need to force an update on them, ie.:
portupgrade -f pecl\*
or
portmaster pecl\*
If you have the pecl hash, json and/or zip extensions you need to replace
them with the php5 bundled ones, ie.:
portmaster/portupgrade -o archivers/php5-zip archivers/pecl-zip
portmaster/portupgrade -o devel/php5-json devel/pecl-json
portmaster/portupgrade -o security/php5-hash security/pecl-hash
If you build your INDEX locally and you tried to build it after the php
update commit, you need to rebuild it _after_ you updated lang/php5:
cd /usr/ports && make index
or (if you use ports-mgmt/p5-FreeBSD-Portindex):
cd /usr/ports && cache-init && portindex -o `make -V INDEXFILE`
20081207:
AFFECTS: users of games/mkgichessclub
AUTHOR: [email protected]
After the update to the version 2.2.0, please, alter the SQL tables
with the command:
mysql _mkgichessclub_ < /usr/local/share/mkgichessclub/db_migrate_2.1_to_2.2.sql
where _mkgichessclub_ is the database name chosen during the installation
of the port.
20081205:
AFFECTS: users of net-p2p/ktorrent
AUTHOR: [email protected]
ktorrent has been updated to 3.1.5 for KDE 4. The last release of ktorrent
for KDE 3 is available under net-p2p/ktorrent2.
20081121:
AFFECTS: users of comms/smstools3
AUTHOR: [email protected]
The startup script of comms/smstools3 has changed. For increased security
smstools now runs as user uucp / group dialer by default. The script
commands like sendsms etc. should be executed as user uucp.
To restore the old behaviour, set smsd_user="root" and smsd_group="wheel"
in your /etc/rc.conf.
Hint: use security/sudo for running smsd scripts as user uucp
20081108:
AFFECTS: users of editors/tamago
AUTHOR: [email protected]
The Wnn backend of editors/tamago port now uses unix domain socket
to communicate the server by default. If $[CJKT]SERVER environment
variable is defined, the value is used as the server host name. In
JSERVER case, for example, the server name is determined in the
following way:
$JSERVER --(if null)--> wnn-jserver --(if null)--> "unix"
If the server host name is null or matches "^unix$", unix domain
socket is used. The path name of the socket can be specified in
wnn-[cjkt]udpath custom variable.
20081105:
AFFECTS: users of french/pluxm-devel
AUTHOR: [email protected]
Please, use
http://download.pluxml.org/plugins/migration-blog-beta3x-beta4.zip to
migrate. It's strongly advised to backup your blog before updating.
20081102:
AFFECTS: users of devel/git
AUTHOR: [email protected]
The location of git-shell has changed to
${PREFIX}/libexec/git-core/git-shell. Please remove the old entry from
/etc/shells.
20081030:
AFFECTS: users of japanese/FreeWnn-server
AUTHOR: [email protected]
The jserver daemon in japanese/FreeWnn-server port now uses "127.0.0.1"
as the default listen address for security reason. If you need
the wildcard address (INADDR_ANY), you have to explicitly set
"listenaddr" to 0.0.0.0 in ${PREFIX}/lib/wnn/ja_JP/jserverrc or
add "-a 0.0.0.0" to ${wnn_flags} in /etc/rc.conf.
20081026:
AFFECTS: users of www/asterisk-gui
AUTHOR: [email protected]
The upgrade to version 2.0 will modify your asterisk dialplan when login
to the page. Hardware autodetection will not work, pending update of
misc/zaptel.
20081028:
AFFECTS: users of www/codeigniter
AUTHOR: [email protected]
For certain installations, the following steps should be performed
after the CodeIgniter 1.7.0 upgrade (taken from:
http://codeigniter.com/user_guide/installation/upgrade_170.html).
>>> Update your Session Table
If you are using the Session class in your application, AND if you
are storing session data to a database, you must add a new column
named user_data to your session table. Here is an example of what
this column might look like for MySQL:
user_data text NOT NULL
To add this column you will run a query similar to this:
ALTER TABLE `ci_sessions` ADD `user_data` text NOT NULL
You'll find more information regarding the new Session functionality
in the Session class page:
http://codeigniter.com/user_guide/libraries/sessions.html
>>> Update your Validation Syntax
This is an optional, but recommended step, for people currently
using the Validation class. CI 1.7 introduces a new Form Validation
class (http://codeigniter.com/user_guide/libraries/form_validation.html)
which deprecates the old Validation library. We have left the old one
in place so that existing applications that use it will not break, but
you are encouraged to migrate to the new version as soon as possible.
Please read the user guide carefully as the new library works a little
differently, and has several new features.
20081026:
AFFECTS: users of japanese/sj3-server
AUTHOR: [email protected]
The sj3serv daemon in japanese/sj3-server port now uses "localhost"
as the default listen address for security reason. If you need
the wildcard address (INADDR_ANY), you have to explicitly set
"servername" to 0.0.0.0 in ${PREFIX}/etc/sj3/serverrc.
20081026:
AFFECTS: users of japanese/Canna and japanese/sj3
AUTHOR: [email protected]
The japanese/Canna and japanese/sj3 port have been split into
japanese/canna-server and japanese/canna-lib, and japanese/sj3-server
and japanese/sj3-lib, respectively for more fine-grained dependency
management in the Ports Collection.
20080926:
AFFECTS: users of www/squid30
AUTHOR: [email protected]
The Squid developers decided to disable COSS support in 3.0, cf.
the discussion starting here:
http://www.squid-cache.org/mail-archive/squid-dev/200809/0067.html
The corresponding port configuration option WITH_SQUID_COSS is still
available but is a no-op for now. If you currently use COSS storage with
Squid 3.0 you need to disable it in squid.conf.
20080924:
AFFECTS: users of ftp/proftpd
AUTHOR: [email protected]
proftpd now stores its .delay and .scoreboard files in /var/run/proftpd
instead of /var/run. If you are updating an existing installation,
adjust the following in /usr/local/etc/proftpd.conf:
ScoreboardFile /var/run/proftpd/proftpd.scoreboard
Also of note: The third party modules, mod_codeconv, mod_comb, and
mod_sql_tds are not compatible with this release and have been removed.
They will be re-added when the respective authors provide updated versions.
20080909:
AFFECTS: users of security/logcheck
AUTHOR: [email protected]
logcheck now stores its configuration files in /usr/local/etc/logcheck
instead of /usr/local/etc. If you are upgrading the port from version
1.1.1 to version 1.2.54, copy the following files to a temporary location,
in case they are removed during the upgrade:
/usr/local/etc/logcheck.hacking
/usr/local/etc/logcheck.ignore
/usr/local/etc/logcheck.violations
/usr/local/etc/logcheck.violations.ignore
e.g.:
cd /usr/local/etc
mkdir /tmp/logcheck.saveconf
cp logcheck.hacking logcheck.ignore logcheck.violations* \
/tmp/logcheck.saveconf
After the upgrade, integrate your local changes to the files listed
above into the new configuration files found in the following directories:
/usr/local/etc/logcheck/cracking.d
/usr/local/etc/logcheck/ignore.d.paranoid
/usr/local/etc/logcheck/ignore.d.server
/usr/local/etc/logcheck/ignore.d.workstation
/usr/local/etc/logcheck/violations.d
/usr/local/etc/logcheck/violations.ignore.d
Please consult the following files for more information about
logcheck rules and reporting levels:
/usr/local/share/doc/logcheck/README.logcheck
/usr/local/share/doc/logcheck/README.logcheck-database
Also note that the upgraded port installs a crontab file for user
"logcheck" that executes the logcheck script every hour and emails
the results to root. If the installation process cannot install
the crontab file, it can be installed manually from
/usr/local/share/examples/logcheck/crontab.in, e.g.:
crontab -u logcheck /usr/local/share/examples/logcheck/crontab.in
20080907:
AFFECTS: users of www/mediawiki
AUTHOR: [email protected]
www/mediawiki version is 1.13 now. 1.12 version was preserved as
www/mediawiki12 port.
20080902:
AFFECTS: users of net-mgmt/nagios and net-mgmt/nagios-devel
AUTHOR: Jarrod Sayers <[email protected]>
The stable Nagios port has now been updated to version 3.0.3. Upgrading
to this version shouldn't require any configuration changes, but note that
most sample configuration files were moved into objects/ directory.
Nagios 2.12 is still available as net-mgmt/nagios2, use the following to
remain on this legacy stable branch:
portmaster -o net-mgmt/nagios2 net-mgmt/nagios
or, if you're using portupgrade:
portupgrade -o net-mgmt/nagios2 net-mgmt/nagios
Nagios 3.x development continues in net-mgmt/nagios-devel, users of this
port in production use should consider switching to the stable branch:
portmaster -o net-mgmt/nagios net-mgmt/nagios-devel
or, if you're using portupgrade:
portupgrade -o net-mgmt/nagios net-mgmt/nagios-devel
20080902:
AFFECTS: users of math/ploticus
AUTHOR: [email protected]
This is a major update.
Deprecated: server-side image maps (use client-side instead); definition
of categories within proc areadef (use proc categories instead); proc print.
Discontinued attributes: proc processdata's stack; proc usedata's element,
proc getdata's rotate, and proc defineunits (use the $changeunits()
function instead).
proc rangebar has been renamed proc boxplot and there are major
functionality changes. Any script that uses proc rangebar will need
maintenance.
See http://ploticus.sourceforge.net/doc/news.html for more information.
20080901:
AFFECTS: users of mail/pine4 and editors/pico
AUTHOR: [email protected]
These two ports have been removed in favor of the new mail/alpine and
editors/pico-alpine ports. UW discontinued work on Pine in September
2005 and is focusing on Alpine now. You should be able to directly
replace pine with alpine.
See http://www.washington.edu/alpine/ for more information.
20080831:
AFFECTS: users of net-mgmt/smokeping
AUTHOR: [email protected]
Smokeping has been updated to 2.4.1, and the example web server
configuration has changed. Please read pkg-message and check that
your server configuration is OK.
20080827:
AFFECTS: users of devel/git
AUTHOR: [email protected]
With the default Makefile settings, most of the programs are now
installed outside your $PATH, except for "git", "gitk", and some server
side programs that need to be accessible for technical reasons. Invoking
a git subcommand as "git-xyzzy" from the command line has been deprecated
since early 2006 (and officially announced in 1.5.4 release notes); use
of them from your scripts after adding output from "git --exec-path" to
the $PATH is still supported in this release, but users are again
strongly encouraged to adjust their scripts to use "git xyzzy" form, as
we will stop installing "git-xyzzy" hardlinks for built-in commands in
later releases.
Please see this URL for more information:
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.txt
20080827:
AFFECTS: users of mail/qmhandle
AUTHOR: [email protected]
A qmHandle.conf file was created, for now, is not needed to edit
${PREFIX}/bin/qmHandle to change stopqmail and startqmail variables.
Just remember to edit configuration file after upgrade.
20080820:
AFFECTS: users of www/p5-Apache-DBI
AUTHOR: [email protected]
www/p5-Apache-DBI has been forked into a MASTER and SLAVE setup
www/p5-Apache-DBI-mp1 and www/p5-Apache-DBI-mp2 so as to work with
www/rt38 among possibly other ports.
20080820:
AFFECTS: users of net/rabbitmq
AUTHOR: [email protected]
The database schema has changed in this version of RabbitMQ. If you
attempt to start RabbitMQ-1.4.0 over top of a previous installation,
it will fail, citing "schema_integrity_check_failed". To correct this,
delete your mnesia directory (/var/db/rabbitmq/mnesia) and restart
the server. Note that this will destroy all your durable exchanges and
queues, and all your persisted messages!
20080816:
AFFECTS: users of mail/assp
AUTHOR: J.R. Oldroyd <[email protected]>
The periodic(8) script no longer outputs to files in the assp directory.
You should remove /var/db/assp/nightly.log and nightly.log.old by hand
once you are done with them. The information that was stored there will
now come in your nightly system email.
20080815:
AFFECTS: users of sysutils/rdiff-backup
AUTHOR: [email protected]
sysutils/rdiff-backup has been upgraded from 1.0.5 to 1.2.0. This is
an incompatible upgrade. If you need the "old" 1.0.5, you can find it
in sysutils/rdiff-backup10.
20080813:
AFFECTS: users of www/ikiwiki
AUTHOR: [email protected]
The layout of the ikiwiki.setup file has changed in a significant
way in this release. Old setup files will continue to work, but new
features, like the new websetup interface, require a new format
setup file. You can convert old setup files into the new format by
running the following command for all your ikiwiki.setup files:
ikiwiki-transition setupformat ikiwiki.setup
20080812:
AFFECTS: users of mail/spamdyke
AUTHOR: [email protected]
The spamdyke port has been updated to 4.0.2. The new version is not
backwards compatible with previous versions. Please examine the new
configuration file for the changes.
20080812:
AFFECTS: users of databases/pgbouncer
AUTHOR: [email protected]
Starting with port version 1.2.3, pgbouncer does not run as root anymore.
If you are upgrading from earlier versions, please update your configuration
in ${PREFIX}/etc/pgbouncer.ini to use log and pid file paths owned by the
newly created pgbouncer user (or customize for a different user yourself).
Default logfile: /var/log/pgbouncer/pgbouncer.log
Default pidfile: /var/run/pgbouncer/pgbouncer.pid
20080808
AFFECTS: users of chinese/phpbb-tw
AUTHOR: [email protected]
The default install directory for phpbb-tw has changed from
${PREFIX}/www/data/phpBB2 to ${PREFIX}/www/phpBB2.
If you are updating from a previous version, to preserve your settings
and data, please do the following:
mv /usr/local/www/data/phpBB2 /usr/local/www
Then update as usual.
20080806:
AFFECTS: users of net-p2p/transmission
AUTHOR: [email protected]
Update to 1.3x, the net-p2p/transmission now is a meta-port. It depends on
cli, daemon, and gtk2. If you don't want that, uninstall transmission and
install net-p2p/transmission-cli by doing:
portmaster -o net-p2p/transmission-cli net-p2p/transmission
or, if you're using portupgrade:
portupgrade -o net-p2p/transmission-cli net-p2p/transmission
20080805:
AFFECTS: users of devel/qt4
AUTHOR: [email protected]
The qt4 ports has been updated to 4.4.1. With this update several ports
specific problems have been fixed. Qt4 headers and libraries have been
moved to include/qt4 and lib/qt4. bsd.qt.mk defines QT_INCDIR and
QT_LIBDIR now, which could be used in qt4-dependent ports if required.
Before you start to update your ports, please force update of qmake4 and
qt4-corelib ports. Portmaster users can do:
portmaster devel/qmake4 devel/qt4-moc devel/qt4-corelib
or, if you're using portupgrade:
portupgrade -f devel/qmake4 devel/qt4-moc devel/qt4-corelib
20080804:
AFFECTS: users of devel/git
AUTHOR: [email protected]
Git's cvsps dependency has been switched from cvsps-devel to cvsps. The
two are incompatible, so you will need to do the following before
upgrading git:
portmaster -o devel/cvsps devel/cvsps-devel
20080728:
AFFECTS: users of net/freeradius2
AUTHOR: David Wood <[email protected]>
Upgrading the FreeRADIUS port used to replace all unmodified files
in your configuration with the latest version from the sample
configuration. This strategy has two disadvantages; over time your
configuration became based on different versions of the sample
configuration, also major changes to the sample configuration could
leave your configuration in a confusing state.
From version 2.0.5, your configuration is not touched if any
configuration files have been modified.
You are recommended to track changes in the sample configuration and
keep your configuration in a version control system. I use Subversion
(see the devel/subversion port) to track my changes. Keeping the sample
configuration in a 'vendor branch' (see the Subversion book for more
details) allows easy merging of changes from the sample configuration.
*** IMPORTANT ***
You are urged to move your configuration out of the default location
(/usr/local/etc/raddb) before upgrading from 2.0.4 (or earlier)
to 2.0.5 (or later). Once this upgrade is complete, remove the sample
configuration that has been installed in the default location and
move your configuration back to the default location.
This is a one time procedure that will prevent unmodified files in
your configuration from being deleted from your configuration and not
restored during the upgrade. No customised files will be lost in any
circumstances.
The sample configuration in 2.0.5 has been reorganised: the
configuration of most modules is now in the modules directory rather
than in radiusd.conf. You are urged to rearrange your configuration
to match this layout.
There are several improvements in this version of the port, including
a new pkg-message that will help new FreeRADIUS users to get started
with the port, also new 'reload' and 'debug' commands for the rc.d
script. Enjoy!
20080727:
AFFECTS: users of www/firefox3
AUTHOR: [email protected]
Update to 3.0.1_1,1; it no longer seeks for plugins in lib/browser_plugins,
because few plugins that built with Firefox 2 can cause Firefox 3 to crash.
We are working on making some changes with plugins directory by using
www/linux-mplayer-plugin/Makefile.npapi. If there are some other plugins
that work with Firefox 3 and you would like to use, you can copy them to
~/.mozilla/plugins or /usr/local/lib/firefox3/plugins manually for now.
20080725:
AFFECTS: users of x11-fm/nautilus and misc/shared-mime-info
AUTHOR: [email protected]
In order to properly update x11-fm/nautilus and misc/shared-mime-info, do
the following using portupgrade:
# pkg_deinstall -fO nautilus
# portupgrade shared-mime-info
# portinstall -O nautilus
Once misc/shared-mime-info has been updated, each user will need to run the
following command:
$ update-mime-database ~/.local/share/mime/
20080725:
AFFECTS: users of www/ojs2
AUTHOR: Greg Larkin <[email protected]>
If you are upgrading from a prior version of ojs2, please backup
your database, uploaded files directory, and your config.inc.php before
the upgrade. Read /usr/local/share/docs/ojs2/UPGRADE or visit
http://pkp.sfu.ca/ojs/UPGRADE for additional upgrade information.
20080721:
AFFECTS: users of net/freenet6
AUTHOR: Edwin Groothuis <[email protected]>
Please note that there has been a major update of this port (from
version 2.x to 5.x) and that the name of the binaries and configuration
files has changed from "tpsc" to "gw6c". The configuration files
have to be copied from ${PREFIX}/share/examples/freenet6 to
${PREFIX}/etc again.
20080719:
AFFECTS: users of x11-fm/gprename
AUTHOR: Martin Tournoij <[email protected]>
GPRename configuration files now live ~/.config/gprename instead of ~/, to
upgrade use the following commands:
% mkdir -p ~/.config/gprename
% mv ~/.gprename ~/.config/gprename/gprename
% mv ~/.gprename_log ~/.config/gprename/gprename_log
20080717:
AFFECTS: users of devel/anjuta
AUTHOR: [email protected]
Anjuta's neon dependency has been switched from neon26 to neon28. The
two are incompatible, so you will need to do the following to upgrade:
portupgrade -o www/neon28 neon26
portupgrade anjuta
20080714:
AFFECTS: users of www/squid
AUTHOR: Thomas-Martin Seck <[email protected]>
www/squid has been updated to Squid 2.7.STABLE3.
This update should be rather straightforward.
The only noticeable change in the port is that the ICAP patch is no
longer included; this is because this patch was unmaintained for a
long time and its use was not really recommended. Please consider
moving to Squid-3 (currently available as www/squid30) if you need
ICAP support.
Squid 2.6 is still available as www/squid26 and will probably be
removed from the ports tree at the end of 2008.
20080712:
AFFECTS: users of databases/rrdtool
AUTHOR: [email protected]
If you use language bindings, like the Perl's RRDs, please upgrade
this port *twice* in order to get the library dependency right.
20080711:
AFFECTS: users of x11-toolkits/gtkdatabox2
AUTHOR: Beech Rintoul <[email protected]>
The port has been deprecated and gtkdatabox has been updated. This was
done so the port tracks vendor name. Please update by doing:
portupgrade -o x11-toolkits/gtkdatabox x11-toolkits/gtkdatabox2
20080709:
AFFECTS: users of www/ikiwiki
AUTHOR: Henrik Brix Andersen <[email protected]>
The IkiWiki editpage form now uses the raw page name, not the page
title, in its 'page' cgi parameter. You will need to rebuild any
existing ikiwiki installations in order to update their 'edit' links
to the new format.
20080708:
AFFECTS: users of emulators/qemu-devel
AUTHOR: [email protected]
The port has been updated to a 20080620 SVN snapshot, which uses the
new (incompatible) kqemu-kmod-devel port that now also works for the
32 bit "qemu" executable on amd64. If you upgrade qemu-devel with the
KQEMU knob on, you have to
# pkg_delete kqemu-kmod-1\*
the old kqemu version first if it is installed.
20080705:
AFFECTS: users of www/ikiwiki
AUTHOR: Henrik Brix Andersen <[email protected]>
The IkiWiki search plug-in now uses www/xapian-omega as backend
instead of textproc/hyperestraier. You will need to update the
configuration of any search enabled ikiwiki installations and
rebuild them since the search form has changed.
20080704:
AFFECTS: users of misc/shared-mime-info
AUTHOR: FreeBSD GNOME Team <[email protected]>
The misc/shared-mime-info has been updated to 0.40. The Mime Types caches
have been changed a bit. If you have created any custom MIME types, you
will need to run update-mime-database to update your local Mime Types
caches:
$ update-mime-database ~/.local/share/mime/
20080702:
AFFECTS: users of irc/ratbox-services
AUTHOR: Beech Rintoul <[email protected]>
Configuration file and database changes have been made between the
1.1.x series and the current release version of ratbox-services.
It is highly recommended that services are stopped, and the proper
upgrade procedure is followed as described in port's documentation,
before restarting newly updated ratbox-services again.
Please remember to backup the database before attempting an
upgrade, as incorrectly upgraded database may be rendered unusable.
The ratbox-services-1.2.x branch implements multi-language support.
However, an inconsistency in the language indexing may result in
errors. It is therefore recommended that the English default to be
used until the next version release.
20080702:
AFFECTS: users of mail/nocc
AUTHOR: Alex Dupre <[email protected]>
The Nocc configuration file has been moved into 'config' subdir.
When updating, remove the old conf.php file and reconfigure Nocc.
20080701:
AFFECTS: users of devel/subversion*
AUTHOR: Lev Serebryakov <[email protected]>
subversion now uses neon-0.28.x (www/neon28) port, and automatic
portupgrade will fail because www/neon28 will conflict with installed
www/neon26 port.
You should upgrade neon library before subversion with the command:
# portupgrade -o www/neon28 neon26
Also, if you use any special subversion ports with bindings, you
should upgrade these ports to clean subversion port with
# portupgrade -o devel/subversion subversion-\*
and install needed bindings (p5-subversion, py-subversion and/or
ruby-subversion) after that.
If you use subversion with bindings installed from devel/subversion
with custom options, don't forget to install separate bindings ports
after subversion upgrade.
20080630:
AFFECTS: users of graphics/cairo, graphics/poppler*, and future users of www/firefox3
AUTHOR: FreeBSD GNOME Team <[email protected]>
The poppler* ports have been updated to 0.8.3 and the shared libraries
have changed. Firefox 3.0 has been added to the tree as www/firefox3.
These changes require that all dependent ports be updated. You can do
this in one of two ways:
# portmaster pixman\*
# portmaster \*cairo\*
# portmaster -r poppler-0.\*
or:
# pkgdb -Ff
# portupgrade pixman\* \*cairo\*
# portupgrade -r poppler-0.\*
20080627:
AFFECTS: users of x11-drivers/xf86-video-ati
AUTHOR: Jung-uk Kim <[email protected]>
mach64 and r128 drivers are now separated out from the ati driver.
These video cards are supported by x11-drivers/xf86-video-mach64
and x11-drivers/xf86-video-r128 respectively. If you have one of
the affected video cards and xorg.conf contains the following line:
Driver "ati"
you must specify "mach64" or "r128". Alternatively, you may install
x11-drivers/xf86-video-ati to get a wrapper driver.
20080626:
AFFECTS: users of science/gramps
AUTHOR: Anders Troback <[email protected]>
Before you upgrade from 2.x to 3.x you need to export your existing
databases to a GRAMPS XML file. After the upgrade you can import
them into the new version.
20080624:
AFFECTS: users of irc/ircd-ratbox-devel
AUTHOR: Beech Rintoul <[email protected]>
Upgrading between different beta releases can cause problems when
changes to the ban database schema have occurred. The 'bantool'
utility now comes with a -u switch that will check and update the
ban database as necessary.
Issuing 'bantool -u' is required when upgrading between beta releases
and must not be done while the ircd is running.
20080624:
AFFECTS: users of www/mod_security
AUTHOR: Marcelo Araujo <[email protected]>
The mod_security port has been updated from 1.9.4 to 2.5.5. Branch 1.9.x
will not receive any further updates; all users must update mod_security
port to versions 2.1 or 2.5.
You can get more information about update issues at:
http://www.modsecurity.org/documentation/
20080624:
AFFECTS: users of www/opera and www/opera/devel
AUTHOR: Ion-Mihai Tetcu <[email protected]>
The Opera port has been updated from 9.2x to 9.5x. A lot of things have
been changed such as keyboard shortcuts[1]; new storage and indexing
formats for mail and feeds; new search.ini; native amd64 binaries; no 4.x
support. You will be asked whether to convert mail and feeds to new
format during start up. Warning: there is no way to downgrade back to
the old format. Be sure to see the Changelog[2].
[1] http://www.opera.com/support/search/view/884/
[2] http://www.opera.com/docs/changelogs/freebsd/950/
20080622:
AFFECTS: users of devel/subversion, subversion-devel and subversion-freebsd
with apr from www/apache22
AUTHOR: Clement Laforet <[email protected]>
apr and apr-util bundled with apache 2.2.9 have been upgraded to 1.3.x, so
shared libraries' versions have been bumped. If you are using subversion
with apache22 apr, you must rebuild subversion after the update.
20080617:
AFFECTS: users of editors/nvi-devel
AUTHOR: Wesley Shields <[email protected]>
editors/nvi-devel has been changed to install nvi, nex, and nview as
to not conflict with editors/2bsd-vi. Please note the new names if
you use this port.
20080616:
AFFECTS: users of mail/dkim-milter
AUTHOR: Hirohisa Yamaguchi <[email protected]>
Most of the command line options can now be set in configure files.
So the default values (such as milterdkim_socket) are changed to blank.
Upgrading users should check the values both in rc.conf and
dkim-filter.conf.
20080612:
AFFECTS: users of www/linux-opera
AUTHOR: [email protected]
The Opera port has been updated from 9.2x to 9.5x. A lot of things have
been changed such as keyboard shortcuts[1]; new storage and indexing
formats for mail and feeds; new search.ini; probably more that I have
missed. I do not know if the keyboard shortcuts and search.ini will be
overwritten. You will be asked whether you want mail and feeds to be
converted to new format during start up. Warning: there is no way to
downgrade back to the old format. Be sure to see the Changelog[2].
[1] http://www.opera.com/support/search/view/884/
[2] http://www.opera.com/docs/changelogs/linux/950/
It is probably best for you to back up your linux-opera directory in
case until you have no problem with new Opera for a while. Also, you
might have to re-configure search and keyboard shortcuts if these were
overwritten:
# cp -Rp ~/.linux-opera ~/.linux-opera-bak
If you are seeing an error of undefined symbols related to GTK+, it is
because it needs newer linux-gtk2 that ports doesn't have. You can enter
'opera:config#FileSelector|DialogToolkit' in the address bar and change
from 0 to 1 in 'Dialog Toolkit' if it annoys you. 0 = auto detection,
1 = QT, and 2 = GTK+.
20080610:
AFFECTS: users of mail/svnmailer
AUTHOR: [email protected]
Some of the config directives and sections allowed have changed. You will
have to edit your config file when updating to 1.1.0-dev-r1373 version of
the port. Please see the following URL for more information:
http://opensource.perlig.de/en/svnmailer/doc-1.1/#general-config-charset
20080609:
AFFECTS: users of devel/pear-Date_Holidays
AUTHOR: [email protected]
pear-Date_Holidays has been split into multiple subports. If you want
a specific geographic region, look at devel/pear-Date_Holidays_*
20080605:
AFFECTS: users of audio/paman and audio/pavucontrol
AUTHOR: [email protected]
paman was renamed to pavucontrol, which are two different projects.
paman is a GTK frontend to PulseAudio, while pavucontrol is a GTK-based
volume control tool to PulseAudio.
20080605:
AFFECTS: users of devel/gettext (i.e.: YOU)
AUTHOR: [email protected]
As a result of the upgrade to gettext-0.17, the shared library version
of libintl has changed, so you will need to rebuild all ports that
depend on gettext:
# portupgrade -rf gettext
# portmaster -r gettext\*
Given the scope and sheer number of dependent ports, it may be more
advisable to simply blow away all existing install ports (after
keeping any local configuration changes), and rebuilding from scratch.
20080603:
AFFECTS: users of editors/emacs
AUTHOR: Yasuhiro KIMURA <[email protected]>
The port (editors/emacs) is updated to 22.2 and some of emacs lisp
directories had changed. So you should reinstall all ports depending on
this one. Run something like:
# portupgrade -fr emacs
20080601:
AFFECTS: users of www/ikiwiki
AUTHOR: [email protected]
If password based logins is enabled in ikiwiki, those passwords were
stored in cleartext in the userdb. To guard against exposing users'
passwords, ikiwiki 2.48 and later use strong (blowfish) hashes for
storing passwords.
To hash existing passwords, update to ikiwiki-2.48 and run the
following command for each of your ikiwiki src dirs:
ikiwiki-transition hashpassword /path/to/your/wiki/srcdir
20080524:
AFFECTS: users of net-im/jabberd
AUTHOR: [email protected]
Starting with version 2.2.0, resolver is now built in the S2S component.
Jabberd configuration files require updating:
jabberd.cfg: resolver component must be removed
s2s.xml: <lookup> section must be added (see s2s.xml.dist)
resolver.xml: may be deleted (file not required anymore)
20080519:
AFFECTS: users of www/nginx and www/nginx-devel
AUTHOR: [email protected]
Nginx version lines have been changed: 0.5 -> 0.6 for stable and
0.6 -> 0.7 for development version. Make sure your configuration
files are compatible with the new version(s).
20080519:
AFFECTS: users of irc/bitlbee
AUTHOR: [email protected]
The default installation is now configured for running bitlbee as
user 'bitlbee'. Make sure any existing configuration files are
readable by that user.
20080517:
AFFECTS: users of multimedia/smplayer-*
AUTHOR: [email protected]
The slave port multimedia/smplayer-qt4 has been removed with the upgrade
of multimedia/smplayer to 0.6.0, qt3 is no longer supported. They are now
fully integrated into multimedia/smplayer.
Please uninstall multimedia/smplayer-qt4 port before upgrading
multimedia/smplayer to version 0.6.0 or higher.
20080513:
AFFECTS: users of security/amavisd-new
AUTHOR: [email protected]
Amavisd-new 2.6.0 introduces several incompatibilities with prior versions.
If you are upgrading from 2.5.4 or earlier, you will need to update your
SQL schema. If you have third party programs that access SQL tables, you
will need to update those also.
COMPATIBILITY WITH 2.5.4:
- when using SQL for logging (e.g. for a pen pals feature) or for
quarantining, SQL tables tables maddr, msgs, msgrcpt and quarantine need
to be extended by a new field 'partition_tag'; see below for details;
- when SQL logging (pen pals) or SQL lookups are used, one can choose a
binary or a character data type for fields users.email, mailaddr.email,
and maddr.email; now may be a good opportunity to change a data type
to binary (string of bytes); see below for details;
- when using SQL for logging, a default for $sql_clause{'upd_msg'}
has changed, so if a configuration file replaces this SQL clause
by a non-default setting, it needs to be updated;
Full information in /usr/local/share/doc/amavisd-new/RELEASE_NOTES.
20080513:
AFFECTS: users of audio/ampache
AUTHOR: [email protected]
Ampache 3.4 uses a different config parser. Unfortunately the new parser
is unable to read old config files. You must run php
${WWWDIR}/bin/migrate_config.inc from the command line.
20080508:
AFFECTS: users of databases/ptop
AUTHOR: [email protected]
The authors have changed the name of this utility to pg_top. To avoid
conflict with another port in the tree with the same name we have retained
'ptop' as the portname. Also note, the binary has also changed to pg_top.
Please start the utility with that name after updating.
20080507:
AFFECTS: perl interface users of audio/gramofile
AUTHOR: [email protected]
Perl support is removed due to devel/swig11 removal in ports.
If you use the Perl interface, you are encouraged to use
the new Audio::Gramofile found on CPAN (contact me for the ports).
20080506:
AFFECTS: users of net-mgmt/collectd