Changeset View
Changeset View
Standalone View
Standalone View
Mk/Scripts/qa.sh
| Show First 20 Lines • Show All 616 Lines • ▼ Show 20 Lines | proxydeps_suggest_uses() { | ||||
| elif [ ${pkg} = "audio/openal" -o ${pkg} = "audio/openal-soft" -o ${pkg} = "audio/freealut" ]; then | elif [ ${pkg} = "audio/openal" -o ${pkg} = "audio/openal-soft" -o ${pkg} = "audio/freealut" ]; then | ||||
| warn "you need USES+=openal" | warn "you need USES+=openal" | ||||
| # readline | # readline | ||||
| elif [ ${pkg} = "devel/readline" ]; then | elif [ ${pkg} = "devel/readline" ]; then | ||||
| warn "you need USES+=readline" | warn "you need USES+=readline" | ||||
| # ssl | # ssl | ||||
| # When updating this, please also update the versions list in | # When updating this, please also update the versions list in | ||||
| # bsd.default-versions.mk and ssl.mk! | # bsd.default-versions.mk and ssl.mk! | ||||
| elif [ ${pkg} = "security/openssl" -o ${pkg} = "security/openssl111" \ | elif [ ${pkg} = "security/openssl" \ | ||||
| -o ${pkg} = "security/openssl34" -o ${pkg} = "security/openssl35" \ | -o ${pkg} = "security/openssl34" -o ${pkg} = "security/openssl35" \ | ||||
| -o ${pkg} = "security/openssl36" \ | -o ${pkg} = "security/openssl36" \ | ||||
| -o ${pkg} = "security/libressl" -o ${pkg} = "security/libressl-devel" \ | -o ${pkg} = "security/libressl" -o ${pkg} = "security/libressl-devel" \ | ||||
| ]; then | ]; then | ||||
| warn "you need USES=ssl" | warn "you need USES=ssl" | ||||
| # Tcl | # Tcl | ||||
| elif expr ${pkg} : "^lang/tcl" > /dev/null; then | elif expr ${pkg} : "^lang/tcl" > /dev/null; then | ||||
| warn "you need USES+=tcl" | warn "you need USES+=tcl" | ||||
| ▲ Show 20 Lines • Show All 463 Lines • Show Last 20 Lines | |||||