forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPDATING
4767 lines (3616 loc) · 172 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.
20070209:
AFFECTS: users of x11/nvidia-driver
AUTHOR: [email protected]
nVidia continues to drop support for old ("legacy") GPUs. To deal with
this fact, the port now allows to specify correct NVVERSION in order to
build driver that supports your graphics card. Currently, supported
"legacy" values are 7184 and 9631. Consult nVidia's README (Appendix A)
to find out whether you need to use legacy driver version, and exactly
which one. Alternatively, you can install one of the corresponding
`x11/nvidia-driver-XXXX' slave ports, where XXXX == needed NVVERSION.
20070208:
AFFECTS: users of databases/pear-MDB2
AUTHOR: [email protected]
All databases dependent bits are moved into other PEAR modules. You need
to install appropriate databases/pear-MDB2_Driver_* port.
20070207:
AFFECTS: users of www/squid*
AUTHOR: [email protected]
The www/squid port has been updated to 2.6. If you are updating from Squid
2.5, please read the Squid release notes at
http://www.squid-cache.org/Versions/v2/2.6/squid-2.6.STABLE9-RELEASENOTES.html
and see whether you need to adapt your squid.conf to the changes described
there.
Squid 2.5 will be available as www/squid25 for next few months. But note
it's no longer being maintained by the Squid developers.
20070206:
AFFECTS: users of emulators/qemu
AUTHOR: [email protected]
qemu now uses aio at least for ide dma, so if you get
"Invalid system call" crashes that is because aio is not (kld)loaded.
20070206:
AFFECTS: users of graphics/djvulibre
AUTHOR: [email protected]
djview was renamed to djview3. For now, the symlink djview->djview3
installed for compatibility. However, users should refer to djview3(1)
instead of djview(1).
20070205:
AFFECTS: prospective users of devel/qt4
AUTHOR: [email protected]
The qt4 ports and associated infrastructure introduce a few new
Makefile variables and porting concepts (compared to qt33).
For details and examples, see
http://mail.kde.org/pipermail/kde-freebsd/2007-February/000239.html
20070205:
AFFECTS: everybody
AUTHOR: [email protected]
New ports category was created - /usr/ports/ports-mgmt
Most significant port moved to this new category is portupgrade.
So don't be alarmed, it was not deleted. You can find it now in
/usr/ports/ports-mgmt/portupgrade
20070205:
AFFECTS: users of devel/portmk
AUTHOR: [email protected]
With the repocopy of portmk to ports-mgmt, you need to update your
make.conf. Change the two Makevars BSDPORTMK and BSDPORTSUBDIRMK
to point to ports-mgmt/portmk.
20070202:
AFFECTS: users of www/aolserver
AUTHOR: [email protected]
With update to aolserver 4.5.0 modules have been moved to separate ports.
The following modules are available initially:
archivers/aolserver-nszlib
databases/aolserver-nsmysql
databases/aolserver-nspostgres
graphics/aolserver-nsgd
security/aolserver-nsencrypt
security/aolserver-nsmcrypt
security/aolserver-nsmhash
security/aolserver-nsopenssl
security/aolserver-nssha1
www/aolserver-nscache
A different aolserver install directory for aolserver and modules
can be specified by defining AOLSERVERBASE in make.conf
The rc.d script has been renamed from aolserver.sh to aolserver.
20070102:
AFFECTS: users of sysutils/portupgrade
AUTHOR: [email protected]
If you have a problem with upgrading the tools from version 2.2.1 and less,
remove the package with pkg_delete portupgrade\* command and reinstall it
from scratch. Remove /usr/ports/INDEX*.db and run portsdb -u.
20070130:
AFFECTS: users of dns/powerdns
AUTHOR: [email protected]
The configuration file was moved from /usr/local/etc to /usr/local/etc/pdns.
20070127:
AFFECTS: users of mail/dovecot
AUTHOR: [email protected]
Since dovecot-1.0.r15, the port has reserved UID/GID 143.
If you are upgrading from an earlier version, please allow the uninstall
script to remove the dovecot user and group or remove them manually prior
to reinstalling the new version.
If your prefer to maintain your existing user/group, you may override this
change with the DOVECOT_UID/DOVECOT_GID environment variables at
installation time.
20070115:
AFFECTS: users of www/lightsquid
AUTHOR: [email protected]
The default configuration files have changed to
${PREFIX}/etc/lightsquid.
20070111:
AFFECTS: users of irc/weechat
AUTHOR: [email protected]
For users of any previous version, all your charset settings
in weechat.rc will be LOST! You should save your weechat.rc
to keep your values and set them again with new "charset" plugin.
For ISO users: history of channels may be without accents
(after /upgrade), this is not recoverable, but this is not a bug.
All new messages should be ok.
Be careful, now default encode is UTF-8 for all channels (before
it was terminal charset). If you still want to send messages as
ISO-8859-1, you should send either global encode or server specific
encode to ISO-8859-1.
For global encode: /setp charset.global.encode = "ISO-8859-1"
For server encode: (on server buffer) /charset encode ISO-8859-1
20070109:
AFFECTS: users of databases/postgresql*
AUTHOR: [email protected]
The server-side utilities of postgresql (initdb, initlocation,
ipcclean, pg_controldata, pg_ctl, pg_id and pg_resetxlog) are now
installed by the respective postgresql*-server port (previously
they where installed with the client). If you update the client, you
should also update the server to make sure you are not left without
the server-side tools. Do something like:
portupgrade postgresql-client postgresql-server
20070105:
AFFECTS: users of mail/spamprobe
AUTHOR: [email protected]
With the update to version 1.4d, the SpamProbe port doesn't use the OPTIONS
framework any more to allow part of the changes below. That means that options
selected for this port won't be saved/used automatically any more and you have
to set the appropriate variables in /etc/make.conf or on the command line to
change the port's behaviour; the variables are documented at the top of the
port's Makefile. Before updating, it might be a good idea to remove
/var/db/ports/spamprobe.
The port now has support for the PBL database backend; unless built with
WITHOUT_PBL set, SpamProbe will use PBL as the default even if you have an
existing BerkleyDB or hash database; in that case, use the parameter "-d" to
specify the type of the existing database on the command line, e.g.
spamprobe -d bdb:$HOME/.spamprobe receive
or
spamprobe -d hash:$HOME/.spamprobe receive
Using PBL instead of BerkleyDB might be a good idea, though, as the former
seems to perform better. You can convert your existing database to PBL using
the following commands (assuming you didn't disable PBL support):
cd ~
mkdir spamprobe.new
spamprobe -d bdb:.spamprobe export | spamprobe -d spamprobe.new import
mv .spamprobe spamprobe.old
mv spamprobe.new .spamprobe
20070106:
AFFECTS: users of security/libwhisker
AUTHOR: [email protected]
Libwhisker 2.0 is *not* backwards-compatible with Libwhisker 1.x.
Changing 'use LW' to 'use LW2' in your programs is not enough--you may
need to make code changes to your program.
However, there is a 'bridge' LW.pm module in which will use LW2
(libwhisker 2.x) functions to emulate the LW (libwhisker 1.x)
functionality.
See http://www.wiretrip.net/rfp/libwhisker/README2 for more details.
20070104:
AFFECTS: users of www/phpsurveyor
AUTHOR: [email protected]
The default install location has changed from
${PREFIX}/www/data/phpsurveyor to ${PREFIX}/www/phpsurveyor.
20070104:
AFFECTS: users of sysutils/hal
AUTHOR: [email protected]
If atapicam is enabled in the kernel, hald will use the CAM device nodes
instead of ATAPI device nodes to access disc devices (e.g. CD-ROMS,
DVD drives, etc.). Previously, hald would use ATAPI device nodes even
if atapicam was enabled. The previous behavior can be restored by
following the instructions in /usr/local/share/doc/hal-0.5.8/README.freebsd.
20070102:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: [email protected]
gnutls has been updated to 1.6.1 and all shared libraries' versions
have been bumped. So you need to rebuild all applications that
depend on gnutls. Do something like:
portupgrade -rf gnutls
20061231:
AFFECTS: users of mail/sylpheed-claws*
AUTHOR: [email protected]
Sylpheed-Claws has been renamed to Claws-Mail upstream. The port and the ports
for the plug-ins have been renamed. If you didn't install claws-mail
already you need to:
portupgrade -o mail/claws-mail sylpheed-claws-2.6\*
20061221:
AFFECTS: users of security/gnupg
AUTHOR: [email protected]
The security/gnupg port was upgraded to 2.0.1 (with security fix)
and good-old gnupg-1.4.6 was repocopied to security/gnupg1.
Both of security/gnupg (2.x) and security/gnupg1 (1.4.x) are
designed not to conflict with each other. So you can use
security/gnupg1 for gpg(1), and use security/gnupg for gpg2(1)
commands.
All directly dependents are $PORTREVISION bumped, so portupgrade -R
gnupg will works fine. After portupgrade, you will have both of
gnupg-2.0.1 and gnupg-1.4.6.
20061219:
AFFECTS: users of x11/kdebase3
AUTHOR: [email protected]
If you choose to enable the HAL backend for the media kioslave,
you should enable dbus, hal and policy kit during system startup.
To do this, add the following lines to /etc/rc.conf:
dbus_enable="YES"
polkitd_enable="YES"
hald_enable="YES"
Notes / known problems about mounting devices in media:/ with HAL enabled:
- Your user must be in group operator in order to be able to mount removable
media.
- Removable media drives (such as CD-ROM drives) *MUST NOT* be listed in
/etc/fstab in order to be mountable.
- If you mount a volume by double-clicking it, it may appear empty. Refresh
the fileview in konqueror to see the files.
- Mounting floppies is currently not supported.
You can still mount them in KDE if ...
- You have an fstab entry for your floppy pointing to a mountpoint
owned by your user (i.e. somewhere in your homedir)
- The vfs.usermount sysctl is set to 1
... by creating a floppy device icon on your KDE desktop and selecting
the above-mentioned fstab entry in the device dropdown list on the
device tab.
- Mounting volumes from fixed drives is prohibited for non-superusers
by default.
20061212:
AFFECTS: users of net/smokeping
AUTHOR: [email protected]
Smokeping now uses rc.d script to startup. Please remember to add
'smokeping_enable="YES"' to your rc.conf.
20061207:
AFFECTS: users of devel/p5-PAR
AUTHOR: [email protected]
As of version 0.97.0, all PAR::Packer logic, i.e. pp, parl and
all packaging tools are moved to another distribution. You can
install devel/p5-PAR-Packer to get them.
20061207:
AFFECTS: users of net/samba3
AUTHOR: [email protected]
Version 3.0.23d of net/samba3 finally got ability to conditionaly
link smbd daemon against FAM libraries. If you don't need this
support make sure that it's not selected in the options menu -
run 'make config' to verify it. You can remove FAM package if it
was installed before as a part of Samba dependencies.
20061201:
AFFECTS: users of mail/assp
AUTHOR: [email protected]
This version of ASSP switches virus detection support from
Mail::ClamAV to File::Scan::ClamAV which uses the external clamd
daemon from the security/clamav port. You will need to ensure
clamd is configured and running if you wish to use ASSP's CLAMAV
option. The default means for ASSP to communicate with clamd
has been set to match clamd's UNIX socket: /var/run/clamav/clamd.
If you use clamd with a TCP socket, you should configure ASSP's
AvClamdPort option to 3310 or whatever socket you use.
20061130:
AFFECTS: users of net/openldap2[34]-server
AUTHOR: [email protected]
The default Berkeley DB version has been changed from
4.3 to 4.4, as suggested by OpenLDAP developers.
Suggested upgrade step:
- Stop OpenLDAP server (i.e. ${PREFIX}/etc/rc.d/slapd stop)
- Backup the OpenLDAP database (typically, /var/db/openldap-data)
with your favorite tool
- Do a "slapcat > backup.ldif" to dump all data
- portupgrade net/openldap23-server
- Remove BDB files from your /var/db/openldap-data; you will want
to keep DB_CONFIG as-is.
- Do a "slapadd < backup.ldif" to restore the data
Alternatively, if you want to keep the current BDB version (4.3),
please define WITH_BDB_VER=43 when building the server.
20061121:
AFFECTS: users of www/hastymail
AUTHOR: [email protected]
The default install location has changed from
${PREFIX}/www/data/hastymail to ${PREFIX}/www/hastymail.
20061109
AFFECTS: users of milter-bogom, dk-milter, dkim-milter
AUTHOR: [email protected]
All 3 milters change their default user to "mailnull".
20061108
AFFECTS: Users of databases/postgresql*-server
AUTHOR: Palle Girgensohn <[email protected]>
With the latest patch release of the PostgreSQL ports, the rc script
is renamed `postgresql'.
20061106
AFFECTS: Users of net/freeradius
AUTHOR: David Wood <[email protected]>
FreeBSD used to patch FreeRADIUS's rlm_mschap.c to strip all domain names
when calculating the hash of an MS-CHAP challenge (a requirement specified
in RFC 2759 paragraph 4 and amplified in paragraph 8.2). FreeRADIUS now
offers its own solution to discard a domain name before hashing in the
MS-CHAP code, which can be enabled via a configuration option. As there is
no longer any need for the FreeBSD patch, it has been removed, leaving the
MS-CHAP code behaving as supplied by the FreeRADIUS team.
If the previous behaviour of the MS-CHAP code is required, add:
with_ntdomain_hack = yes
to the mschap { } section of your FreeRADIUS configuration. There should be
a commented out line that can be modified around line 696 of
${PREFIX}/etc/raddb/radiusd.conf if your configuration is based on the
sample FreeRADIUS configuration.
This option is not set by default in the sample FreeRADIUS configuration.
Only those who have clients sending a domain name as part of the user name
when using MS-CHAP will be affected by this change; they will need to set
this option to allow FreeRADIUS to authenticate their clients successfully.
This may only affect those with older Windows clients, but I cannot be sure.
Some sources suggest setting this configuration option anyway to prevent
FreeRADIUS from breaching RFC 2759 inadvertently, leading to authentication
failure. It is left to the user whether to set this configuration option
anyway, or only to set it in the event of authentication failures stemming
from MS-CHAP.
Debug output from radiusd that reads "rlm_mschap: NT Domain delimeter found,
should we have enabled with_ntdomain_hack?" suggests that this configuration
option should be enabled.
New maintainer alerted to this issue by private mail from Thomas Vogt
20061106
AFFECTS: users of syutils/munin-*
AUTHOR: [email protected]
- The default install location has changed from
${PREFIX}/www/data/munin to ${PREFIX}/www/munin.
20061106
AFFECTS: users of chinese/tatter-tools
AUTHOR: [email protected]
- The default install location has changed from
${PREFIX}/www/data/tatter to ${PREFIX}/www/tatter.
20061102
AFFECTS: users of mail/fetchmail
AUTHOR: [email protected]
- Along with the update to fetchmail 6.3.5, support for the POP2
protocol has been removed from the port's default configuration.
If needed, POP2 can be enabled with the port's option interface.
- New feature: GSSAPI support.
20061101:
AFFECTS: Users of mail/dovecot
AUTHOR: [email protected]
Dovecot now requires the mail root to be set explicitly in the the
default_mail_env variable, where it could previously be omitted.
Using the old-style syntax may result in dovecot being unable to find
mailboxes. Installations using the example/default configuration
settings should not be affected.
This is noted in the release announcement:
http://dovecot.org/list/dovecot-news/2006-October/000016.html
20061031:
AFFECTS: Users of math/rkward
AUTHOR: [email protected]
The way some information such as descriptive labels is stored in the
R workspace was changed in RKWard 0.4.0.
While the data itself can still be loaded, labels will not be
available from workspaces created with an earlier version of RKWard.
To convert the old labels to the new format, run
rk.convert.pre040 ()
in the RKWard R console after loading the workspace in question.
20061031:
AFFECTS: Users of news/inn-current or news/inn-stable
AUTHOR: [email protected]
The stable and current ports of inn have been updated. They suffered
from the same problem previously documented and fixed in news/inn.
When upgrading either of the two mentioned ports, users are advised
to move inn's database directory (/usr/local/news/db) out of the way
prior to _deinstallation_ in order to save its contents from being
erased.
20061014:
AFFECTS: All GTK+2 and GNOME users
AUTHOR: [email protected]
GNOME has been updated to 2.16. All GTK+2 and GNOME components have
been moved from X11BASE (/usr/X11R6) to LOCALBASE (/usr/local). To
upgrade your GNOME desktop or/and other applications you will need
to use either sysutils/portupgrade or sysutils/portmaster. To use
portmaster, make sure you have least 1.9 version to have the
upgrade succeed.
Portupgrade users:
pkgdb -Ff
portupgrade -rf pkg-config\*
Portmaster users:
portmaster -r pkg-config\*
20061010:
AFFECTS: users of devel/avr-gcc*
AUTHOR: [email protected]
The old avr-gcc port has been renamed into avr-gcc-3, and continues
support for GCC 3.x (for a while).
The former avr-gcc-devel port has been moved into avr-gcc, so GCC
4.x is now the default.
There is an entry in MOVED for the latter change but not for the
former one, as the automated tools (e.g. portupgrade) got confused
otherwise.
If you've previously been using avr-gcc-devel, these tools should
automatically take notice (based on the entry in MOVED), and change
the installed package to avr-gcc.
If you've previously been using avr-gcc, and want to move on to the
new default GCC 4.x, this should be fully automatic, as the port
name just stays, and the version increases.
If you've previously been using avr-gcc, and want to stay at GCC 3.x
for some reason, please manually perform a portupgrade to the new
name:
portupgrade -o devel/avr-gcc-3 avr-gcc
20061010:
AFFECTS: user of sysutils/flexbackup
AUTHOR: Marcus von Appen <[email protected]>
The port now respects PREFIX:
Before:
/etc/flexbackup.conf for PREFIX=whatever, WITH_PREFIX_CONF unset
Now:
PREFIX/etc/flexbackup.conf for PREFIX=whatever
20061010:
AFFECTS: users of audio/gtkpod
AUTHOR: [email protected]
WITH_AAC knob has been renamed to WITH_MPEG4IP since it now covers
not only AAC, but H.264 support as well.
20061009:
AFFECTS: users of ports using ODBC (databases/libiodbc or databases/unixODBC)
AUTHOR: [email protected]
All the ports have been modified to use the same way of choosing
between ODBC flavors (IODBC and UNIXODBC).
This way is defining either WITH_IODBC or WITH_UNIXODBC.
20061009:
AFFECTS: users of any ports using Python
AUTHOR: [email protected]
After upgrading of lang/python, you must rebuild all its consumer
ports to make them get ready to Python 2.5.
To do this, you will need to:
pkgdb -uf && cd /usr/ports/lang/python && make upgrade-site-packages
20061007:
AFFECTS: users of security/p5-openxpki
AUTHOR: [email protected]
Old port security/p5-openxpki has been split into 8 new ports:
p5-openxpki: core for server part
p5-openxpki-client: base class for actual clients
p5-openxpki-i18n: internationalization of the user interface
p5-openxpki-client-cli: command line interface to local OpenXPKI daemon
p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon
p5-openxpki-client-scep: set of SCEP tools
p5-openxpki-client-soap-lite: set of SOAP-Lite tools
p5-openxpki-deployment: set of deployment tools
Please see security/p5-openxpki/pkg-descr for their interdependencies.
20060926:
AFFECTS: users of security/libgpg-error and any port that depends on it
AUTHOR: [email protected]
libgpg-error was updated to 1.4 and shared library version has been
bumped. So you need to rebuild all ports that depend on libgpg-error.
Do something like:
portupgrade -rf libgpg-error-\*
20060923:
AFFECTS: users of net-mgmt/net-snmp
AUTHOR: [email protected]
rcNG script was updated to support snmpd_pidfile and snmpd_conffile.
So, if you set snmpd_flags like "-c /usr/local/etc/snmpd.conf ...",
please change your /etc/rc.conf like following setting:
from (before update)
snmpd_flags="-a -c /usr/local/etc/snmpd.conf -p /var/run/snmpd.pid"
to (after update)
snmpd_flags="-a"
snmpd_pidfile="/var/run/snmpd.pid"
snmpd_conffile="/usr/local/etc/snmpd.conf"
20060922:
AFFECTS: users of mail/tmda
AUTHOR: [email protected]
TMDA has been updated to version 1.1.5, which is the latest stable
release. 1.1 is now the stable branch, 1.0 branch has been obsoleted.
Changes include:
- ~/.tmdarc configuration file has been obsoleted by ~/.tmda/ dir;
see ${PREFIX}/share/examples/dot-tmda for sample configuration
- only minimal set of HTML documentation is now installed;
please see http://wiki.tmda.net/ for full documentation
- templates has changed: single bounce.txt has been replaced
with various bounce_*.txt templates; see ${PREFIX}/share/tmda
20060921:
AFFECTS: users of mail/mailfront
AUTHOR: [email protected]
Mailfront was rewritten in version 1.0 to be totally modular.
Its functionality has been split into several modules that are now
installed into ${PREFIX}/libexec/mailfront. Various *front-* commands
are now merely shell script wrappers around the newly introduced
mailfront command and its new modules.
The smtpfront-reject command has been removed completely,
being deprecated in favor of using a plugin.
Please refer to http://untroubled.org/mailfront/NEWS for further details.
20060910:
AFFECTS: users of net-mgmt/zabbix
AUTHOR: [email protected]
Users who start zabbix server should note that server name was changed
from zabbix_suckerd to zabbix_server and a variable in /etc/rc.conf
should be changed accordingly.
20060904:
AFFECTS: users of net/samba3
AUTHOR: [email protected]
Revision of Samba 3.0.23c port had changed location of the directory,
where Samba stores it's smbpasswd files from $PREFIX/private to a more
common $PREFIX/etc/samba.
You need to move *.tdb files from an old to new location and remove old
directory if you use tdbsam backend for Samba user authentication.
Starting with the 3.0.23c release, the officially supported passdb
backends (smbpasswd, tdbsam, and ldapsam) now operate identically with
regards to the historical RID algorithm for unmapped users and groups
(i.e. accounts not in the passdb or group mapping table). The resulting
behavior is that all unmapped users are resolved to a SID in the
S-1-22-1 domain and all unmapped groups resolve to a SID in the S-1-22-2
domain. Previously, when using the smbpasswd passdb, such users and
groups would resolve to an algorithmic SID in the machine's own domain
(S-1-5-XX-XX-XX). However, the smbpasswd backend still utilizes the RID
algorithm when creating new user accounts or allocating a RID for a new
group mapping entry.
With the changes in the 3.0.23c release, it is now possible to resolve
a uid/gid, name, or SID in any direction and always obtain a symmetric
mapping. This is important so that values for smb.conf parameters such
as "valid users" resolve to the same SIDs as those included in the
local user's initial token.
20060902:
AFFECTS: users of japanese/uim-anthy and japanese/uim-canna
AUTHOR: [email protected]
Input modes for uim-anthy and uim-canna are reorganized since version 1.2.0.
Please re-configure the following keybindings with uim-pref.
- off key
- convert to halfwidth alphanumeric key
- convert to fullwidth alphanumeric key
- convert to halfwidth katakana key
- halfwidth katakana mode key
20060902:
AFFECTS: users of net-p2p/linuxdcpp
AUTHOR: [email protected]
The name of binary, datadir, and docsdir have been renamed from ldcpp to
linuxdcpp by the linuxdcpp developer.
20060831:
AFFECTS: users of x11-wm/fluxbox-devel
AUTHOR: [email protected]
The prefix has been changed, the fluxbox-devel now lives in LOCALBASE. You
will need to download the fluxbox_prefix.sh script and run it as in your
normal users that have ~/.fluxbox. The script only will replace old path to
the new path; it does not affect on anything else.
$ fetch http://people.freebsd.org/~mezz/script/fluxbox_prefix.sh
$ sh fluxbox_prefix.sh
It will creating a backup of ~/.fluxbox to ~/.fluxbox-bak. If everything
work fine, then you can remove ~/.fluxbox-bak. If you have the different
default of LOCALBASE and X11BASE, you can edit it in fluxbox_prefix.sh.
20060831:
AFFECTS: users of games/warzone
AUTHOR: [email protected]
games/warzone port directory was renamed back to games/warzone2100 because
the last version (2.0.4) uses the original name.
20060830:
AFFECTS: users of textproc/p5-Senna
AUTHOR: [email protected]
This version (0.50) of p5-Senna module breaks some compatibilities
with the previous versions.
20060828:
AFFECTS: users of devel/gpc
AUTHOR: [email protected]
devel/gpc port directory was renamed to devel/libgpc to avoid conflicting
with lang/gpc.
20060828:
AFFECTS: users of games/warzone2100
AUTHOR: [email protected]
games/warzone2100 port directory was renamed to games/warzone to match
the port distfile and data directory.
20060827:
AFFECTS: users of devel/perforce
AUTHOR: [email protected]
Perforce has been updated to version 2006.1. As usual, there has
been significant schema upgrades, so even though upgrading to
2006.1 is straightforward, it is still highly recommended to
follow the upgrading instructions in the release notes:
http://www.perforce.com/perforce/doc.061/user/relnotes.txt
20060818:
AFFECTS: users of net/isc-dhcp3-server or net/isc-dhcp3-relay
AUTHOR: [email protected]
Starting with version 3.0.5rc1 of the ISC DHCPD package, any running
"dhcpd" or "dhcrelay" processes are stopped automatically when the port
gets deinstalled.
Please remember to start the services again manually, in case you upgrade
from version 3.0.5rc1 or newer to any other version.
Due to the better use of the USE_RC_SUBR framework, the rc script name may
change from isc-dhcpd.sh or isc-dhcrelay.sh to isc-dhcpd or isc-dhcrelay
depending on the FreeBSD version you use.
20060818:
AFFECTS: users of www/gallery2
AUTHOR: [email protected]
The default install location has changed from
${PREFIX}/www/data/gallery2 to ${PREFIX}/www/gallery2.
20060818:
AFFECTS: users of sysutils/nut
AUTHOR: [email protected]
Starting with nut-2.0.4, the megatec UPS driver has been backported from
the development tree. Users of the following UPS drivers (powermust, blazer,
fentonups, mustek, esupssmart, ippon, sms, masterguard) are encouraged to
switch to the megatec UPS driver, which should replace all these drivers
by nut-2.2 .
For more information, please refer to ${LOCALBASE}/share/doc/nut/megatec.txt
20060815:
AFFECTS: users of net/samba3
AUTHOR: [email protected]
Since Samba 3.0.8, it has been recommended that all domain accounts
listed in smb.conf on a member server be fully qualified with the
domain name. This is now a requirement. All unqualified names are
assumed to be local to the Unix host, either as part of the server's
local passdb or in the local system list of accounts (e.g. /etc/passwd
or /etc/group).
If the member server is not running winbindd at all, domain
accounts will be implicitly mapped to local accounts and their
tokens will be modified appropriately to reflect the local
SID and group membership.
20060804:
AFFECTS: users of editors/jedit-devel
AUTHOR: [email protected]
Starting with jEdit 4.3pre6, jedit-devel now requires Java 1.5+ to be
installed due to new features and classes used by the package. If you
cannot install or use Java 1.5, you will need to stay with jEdit 4.2.
20060802:
AFFECTS: users of www/linux-opera
AUTHOR: [email protected]
The prefix has been changed, linux-opera now lives in LOCALBASE. Be sure to
go in ~/.linux-opera/ and open a few of *.ini files to change all of this
from "/usr/X11R6/share/linux-opera" to "/usr/local/share/linux-opera". Most
of editors have 'search and replace' option, so use it or just use sed.
20060801:
AFFECTS: users of www/b2evolution
AUTHOR: [email protected]
The default install location has changed from
${PREFIX}/www/data/b2evolution to ${PREFIX}/www/b2evolution.
20060801:
AFFECTS: users of audio/libtunepimp and any port that depends on it
AUTHOR: [email protected]
libtunepimp has been updated to 0.5. But it breaks some ports depend
on it such as audio/juk and audio/amarok. To fix this kind of problem,
try to install audio/libtunepimp-old, which is previous version of
audio/libtunepimp.
20060731:
AFFECTS: users of graphics/GraphicsMagick
AUTHOR: [email protected]
In order to fix a symbol collision between GraphicsMagick and libtidy,
GraphicsMagick has been updated so that all its symbols are now prefixed with
'Gm'. Consequently, all dependencies should be upgraded when you perform this
upgrade with this command :
portupgrade -rf graphics/GraphicsMagick
20060729:
AFFECTS: users of net/nss_ldap
AUTHOR: [email protected]
The krb5_ccname option in ldap.conf has been fixed in the port so that it
now works. Please be aware of this when updating if you have it in your
config and are using GSSAPI when use_sasl is enabled. Using GSSAPI with a
misconfigured krb5_ccname combined with one of the 'hard' bind_policy
options can effectively lockout users.
20060728:
AFFECTS: users of polish/ekg and polish/ibgadu
AUTHOR: [email protected]
If you have installed both ekg-1.6,2 and libgadu-20051229_1 then you should
first deinstall them and install polish/ekg after that, eg:
pkg_deinstall -f pl-ekg-\* pl-libgadu-\*
portinstall polish/ekg
20060723:
AFFECTS: users of www/dillo-i18n
AUTHOR: [email protected]
Starting with version 20060709 the i18n version of Dillo encodes
the bookmark file using UTF-8 encoding. You can try to convert
your existing bookmark file with the bm-update script or you could
try to convert it by hand using iconv(1) from you current locale
to UTF-8, e.g. by calling 'iconv -f ISO-8859-1 -t UTF-8 ~/.dillo/bm.txt'.
Please see the iconv documentation for further details.
20060722:
AFFECTS: users of games/phpua-*
AUTHOR: [email protected]
The default install location has changed from
${PREFIX}/www/data/phpua-* to ${PREFIX}/www/phpua-*.
20060719:
AFFECTS: users of mail/postfix
AUTHOR: [email protected]
mail/postfix was updated to 2.3.0 and does no longer support POSTFIX_OPTIONS,
please consider using "make config" to set your OPTIONS. The SPF patch was
removed since this does not apply cleanly and has problems when using
pipe(8). Consider using mail/postfix-policyd-spf instead of the SPF patch.
If you need the Postfix 2.2 version you can find this in mail/postfix22.
20060715:
AFFECTS: users of Aspell or its versions bundled with dictionaries
AUTHOR: [email protected]
Since aspell-0.60.4_4, all dictionaries can be installed separately:
- by default, textproc/aspell installs the English dictionaries (no
change);
- thereafter you can install any foreign dictionary;
- when you install a foreign dictionary, i.e. french/aspell or
textproc/da-aspell, it installs only the dictionaries, and depends
upon textproc/aspell for the programs;
- if you don't need the English dictionaries, you can define
WITHOUT_DICTEN or install textproc/aspell-without-dicten.
20060714:
AFFECTS: users of security/krb5
AUTHOR: [email protected]
As of MIT KRB5 1.5, Kerberos no longer supports static linking nor
do the static libraries build. The reason for this is that KRB5 1.5
implements plugins to implement functions. GSS-API is now implemented
as a function. As such, the MIT Kerberos team has yet to implement
plugins using static libraries. Users requiring static libraries or
statically linked binaries are advised not to upgrade to this release
until MIT provides a solution for statically linked binaries.
20060714:
AFFECTS: users of www/mediawiki
AUTHOR: [email protected]
www/mediawiki version is 1.7 now. 1.6 version was preserved on
www/mediawiki16 port.
20060713:
AFFECTS: users of x11-fonts/terminus-font
AUTHOR: [email protected]
Since version 4.20, terminus-font changed place to install fonts to
${PREFIX}/lib/X11/fonts/terminus-font, please, add this new path to your
font paths.
20060711:
AFFECTS: users of net/samba3
AUTHOR: [email protected]
Starting from version 3.0.23 Samba no longer supports experimental
SQL and XML passdb backends. If you need this functionality, please
visit http://pdbsql.sourceforge.net/ (port is coming soon).
The default mapping entries for groups such as "Domain Admins" are
no longer created when using an smbpasswd file or a tdbsam passdb
backend. Use 'net groupmap add' rather than 'net groupmap modify'
to set these entries.
A substring matching rule has been added to the sambaSID attribute
definition. For OpenLDAP servers, this will require the addition
of 'index sambaSID sub' to the slapd.conf configuration file. It
will be necessary to run slapindex after making this change. There
has been no change to actual data storage schema.
20060711:
AFFECTS: users of games/linux-ut
AUTHOR: [email protected], [email protected]
Some fixes for network play were done in UnrealTournament.ini
There are two ways to fix it:
1. The easy way is to remove the ${HOME}/.loki/ut directory, yet all
local settings will be lost.
2. The hard way: in ${HOME}/.loki/ut/UnrealTrounament.ini, under the
[Core.System] section, SavePath, CachePath and multiple Paths
variables should be replaced with the ones in (and in the same order
as) ${PREFIX}/share/linux-ut/System/UnrealTournament.ini.
20060707:
AFFECTS: users of www/lifetype
AUTHOR: [email protected]
The default install location has changed from
${PREFIX}/www/data/lifetype to ${PREFIX}/www/lifetype.
20060706:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: [email protected]
gnutls has been updated to 1.4.0 and all shared libraries' versions
have been bumped. So you need to rebuild all applications that
depend on gnutls. Do something like:
portupgrade -rf gnutls
20060703:
AFFECTS: users of audio/amarok
AUTHOR: [email protected]
A bunch of port options have been removed, so you should remove your
current options, before attempting to build the port.
- Enter the amarok port directory, and run `make rmconfig'
20060703:
AFFECTS: users of sysutils/portupgrade
AUTHOR: [email protected]
Because portupgrade had a problem with detecting Berkley DB version 2
or newer, and the default database format is now set to use these
versions, you can end up with a portupgrade that does not work with
older databases. A quick fix is to remove the databases, type:
'rm /var/db/pkg/pkgdb.db /usr/ports/INDEX*.db'.