TheMacPortsWiki/ProblemHotlist
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
原文: [[MacPorts:ProblemHotlist:http://trac.macosforge.or...
*Problem Hotlist [#sce72a71]
#contents
//1. Fetch failures - readline port and others
**1. Fetch の失敗 - readline およびその他の port にて [#m...
//When MacPorts' fetches via ftp, it contacts servers in ...
MacPorts が ftp 経由で fetch をおこなう際には、まず "EPSV...
それがうまくいかなければ、"PASV" コマンドを試みます。
ftp.cwru.edu、およびその他のサーバでは、"EPSV" コマンドの...
"PASV" コマンドを試みることが出来ず、fetch に失敗してしま...
//Various options are being considered to deal with this ...
MacPorts の将来のリリースでは、この問題に対処するためのオ...
また現状において、firewall の内側で利用した場合に、多くの...
唯一の解決策は、ブラウザや FTP クライアントを使ってファイ...
それを %%${prefix}/var/db/dports/distfiles/<portname>/%% ...
'port clean --all' が実行済みの場合には、配布ファイルの保...
各々の port におけるこのディレクトリは、fetch フェーズの...
//Note: Checksum failures after a fetch are typically a s...
注意: fetch 後のチェックサムが失敗する場合、おそらくそれ...
//2. A port failed to build, upgrade, or run with a messa...
**2. libintl3.dylib に関するメッセージが表示され、port の...
dyld: Library not loaded: /opt/local/lib/libintl.3.dylib
//The gettext port was recently updated from 0.14.x to 0....
最近、gettext の port が 0.14.x から 0.15.x にアップデー...
gettext を 0.15.x にアップデートした場合、
gettext に依存する ports を全てリビルドしなければなりませ...
//Here is a script that can tell you what ports you have ...
インストールした ports のうち、gettext に依存するものを調...
#!/bin/bash
if test -z "$1"; then
echo "usage: $0 <libname>"
exit 1
fi
for file in `find /opt/local/lib -name *.dylib; find /op...
# Skip this match if it's a symbolic link
if test -f $file -a ! -L $file; then
# Look for references to the missing library
otool -L $file | grep --silent $1
if test "$?" = "0"; then
port provides `echo $file`
fi
fi
# Grab the name of the port and make sure to list each p...
done | awk -F: ' { print $2 } ' | sort | uniq
//Copy this script, paste it into a text editor, and save...
このスクリプトをコピーしてテキストエディタに貼り付け、dep...
今回は gettext に依存する ports を検索したいので、"libint...
bash ~/Desktop/depsearch.sh libintl
//Now you’ve got a list of ports you need to fix. Force u...
これで修正の必要がある ports のリストが得られますので、
そのそれぞれの ports について、強制アンインストールおよび...
port uninstall -f <port>
port clean --archive <port>
//Once that’s done, force an install of each one.
これが終われば、それぞれについて強制インストールをおこな...
port install -f <port>
//If you’ve got old nonactivated versions of the port ins...
インストール済み port の、古くアクティブでないバージョン...
まず旧バージョンを取り除く必要があります。以下の方法で旧...
port -duf uninstall
終了行:
原文: [[MacPorts:ProblemHotlist:http://trac.macosforge.or...
*Problem Hotlist [#sce72a71]
#contents
//1. Fetch failures - readline port and others
**1. Fetch の失敗 - readline およびその他の port にて [#m...
//When MacPorts' fetches via ftp, it contacts servers in ...
MacPorts が ftp 経由で fetch をおこなう際には、まず "EPSV...
それがうまくいかなければ、"PASV" コマンドを試みます。
ftp.cwru.edu、およびその他のサーバでは、"EPSV" コマンドの...
"PASV" コマンドを試みることが出来ず、fetch に失敗してしま...
//Various options are being considered to deal with this ...
MacPorts の将来のリリースでは、この問題に対処するためのオ...
また現状において、firewall の内側で利用した場合に、多くの...
唯一の解決策は、ブラウザや FTP クライアントを使ってファイ...
それを %%${prefix}/var/db/dports/distfiles/<portname>/%% ...
'port clean --all' が実行済みの場合には、配布ファイルの保...
各々の port におけるこのディレクトリは、fetch フェーズの...
//Note: Checksum failures after a fetch are typically a s...
注意: fetch 後のチェックサムが失敗する場合、おそらくそれ...
//2. A port failed to build, upgrade, or run with a messa...
**2. libintl3.dylib に関するメッセージが表示され、port の...
dyld: Library not loaded: /opt/local/lib/libintl.3.dylib
//The gettext port was recently updated from 0.14.x to 0....
最近、gettext の port が 0.14.x から 0.15.x にアップデー...
gettext を 0.15.x にアップデートした場合、
gettext に依存する ports を全てリビルドしなければなりませ...
//Here is a script that can tell you what ports you have ...
インストールした ports のうち、gettext に依存するものを調...
#!/bin/bash
if test -z "$1"; then
echo "usage: $0 <libname>"
exit 1
fi
for file in `find /opt/local/lib -name *.dylib; find /op...
# Skip this match if it's a symbolic link
if test -f $file -a ! -L $file; then
# Look for references to the missing library
otool -L $file | grep --silent $1
if test "$?" = "0"; then
port provides `echo $file`
fi
fi
# Grab the name of the port and make sure to list each p...
done | awk -F: ' { print $2 } ' | sort | uniq
//Copy this script, paste it into a text editor, and save...
このスクリプトをコピーしてテキストエディタに貼り付け、dep...
今回は gettext に依存する ports を検索したいので、"libint...
bash ~/Desktop/depsearch.sh libintl
//Now you’ve got a list of ports you need to fix. Force u...
これで修正の必要がある ports のリストが得られますので、
そのそれぞれの ports について、強制アンインストールおよび...
port uninstall -f <port>
port clean --archive <port>
//Once that’s done, force an install of each one.
これが終われば、それぞれについて強制インストールをおこな...
port install -f <port>
//If you’ve got old nonactivated versions of the port ins...
インストール済み port の、古くアクティブでないバージョン...
まず旧バージョンを取り除く必要があります。以下の方法で旧...
port -duf uninstall
ページ名: