diff options
-rwxr-xr-x | bin/ebuild.sh | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index b4c6dcc53..d7cfe3b9b 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -535,10 +535,6 @@ einstall() { fi } -pkg_setup() { - return -} - pkg_nofetch() { [ -z "${SRC_URI}" ] && return @@ -582,30 +578,6 @@ src_test() { fi } -src_install() { - return -} - -pkg_preinst() { - return -} - -pkg_postinst() { - return -} - -pkg_prerm() { - return -} - -pkg_postrm() { - return -} - -pkg_config() { - eerror "This ebuild does not have a config function." -} - # Used to generate the /lib/cpp and /usr/bin/cc wrappers gen_wrapper() { cat > "$1" <<-EOF @@ -1735,7 +1707,7 @@ if [ -n "${EBUILD_SH_ARGS}" ] ; then exit 1 ;; prerm|postrm|postinst|config|info) - if [ "${EBUILD_SH_ARGS}" == "info" ] && \ + if hasq ${EBUILD_SH_ARGS} config info && \ [ "$(type -t pkg_${EBUILD_SH_ARGS})" != "function" ]; then ewarn "pkg_${EBUILD_SH_ARGS}() is not defined: '${EBUILD##*/}'" exit 0 |