作業日記@HatenaBlog

各種の作業メモ

cups-client と cups-image が upgrade できない

portupgrade -a 実行時の不具合

ports を全てバージョンアップするため portupgrade -a したところ、一部 ports が update できない現象が発生。

cups-client の場合
# portupgrade cups-client
** Port marked as IGNORE: print/cups-client:
        is marked as broken: gnutls does not support threads yet; disable the GNUTLS
** Listing the failed packages (-:ignored / *:skipped / !:failed)
        - print/cups-client (marked as IGNORE)
cups-image の場合
# portupgrade cups-image
** Port marked as IGNORE: print/cups-image:
        is marked as broken: gnutls does not support threads yet; disable the GNUTLS
** Listing the failed packages (-:ignored / *:skipped / !:failed)
        - print/cups-image (marked as IGNORE)

これらが marked as IGNORE となる。
make する際のオプションスイッチを次の通り設定し解決した。

# cd /usr/ports/print/cups-client/
# make config
 
[X] GNUTLS  Build with GNUTLS instead of OpenSSL
↓
[ ] GNUTLS  Build with GNUTLS instead of OpenSSL
 
 
# cd /usr/ports/print/cups-image/
# make config
[X] GNUTLS  Build with GNUTLS instead of OpenSSL
↓
[ ] GNUTLS  Build with GNUTLS instead of OpenSSL