77 lines
2.4 KiB
Bash
77 lines
2.4 KiB
Bash
#!/usr/bin/env bash
|
|
# vim: set sw=4 sts=4 et :
|
|
|
|
# Copyright (c) 2006, 2007, 2009 Ciaran McCreesh
|
|
#
|
|
# Based in part upon ebuild.sh from Portage, which is Copyright 1995-2005
|
|
# Gentoo Foundation and distributed under the terms of the GNU General
|
|
# Public License v2.
|
|
#
|
|
# This file is part of the Paludis package manager. Paludis is free software;
|
|
# you can redistribute it and/or modify it under the terms of the GNU General
|
|
# Public License, version 2, as published by the Free Software Foundation.
|
|
#
|
|
# Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
# Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
default_src_install()
|
|
{
|
|
if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]]; then
|
|
emake DESTDIR="${D}" install
|
|
fi
|
|
if ! declare -p DOCS >/dev/null 2>&1 ; then
|
|
local d
|
|
for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \
|
|
THANKS BUGS FAQ CREDITS CHANGELOG ; do
|
|
[[ -s "${d}" ]] && dodoc "${d}"
|
|
done
|
|
elif declare -p DOCS | grep -q '^declare -a ' ; then
|
|
dodoc "${DOCS[@]}"
|
|
else
|
|
dodoc ${DOCS}
|
|
fi
|
|
}
|
|
|
|
src_install()
|
|
{
|
|
default_src_install
|
|
}
|
|
|
|
ebuild_f_install()
|
|
{
|
|
if [[ -d "${S}" ]] ; then
|
|
cd "${S}" || die "cd to \${S} (\"${S}\") failed"
|
|
elif [[ -n "${PALUDIS_NO_S_WORKDIR_FALLBACK}" ]] ; then
|
|
die "\${S} (\"${S}\") does not exist"
|
|
elif [[ -d "${WORKDIR}" ]] ; then
|
|
cd "${WORKDIR}" || die "cd to \${WORKDIR} (\"${WORKDIR}\") failed"
|
|
fi
|
|
|
|
if hasq "install" ${SKIP_FUNCTIONS} ; then
|
|
ebuild_section "Skipping src_install (SKIP_FUNCTIONS)"
|
|
else
|
|
if [[ $(type -t pre_src_install ) == "function" ]] ; then
|
|
ebuild_section "Starting pre_src_install"
|
|
pre_src_install
|
|
ebuild_section "Done pre_src_install"
|
|
fi
|
|
|
|
ebuild_section "Starting src_install"
|
|
src_install
|
|
ebuild_section "Done src_install"
|
|
|
|
if [[ $(type -t post_src_install ) == "function" ]] ; then
|
|
ebuild_section "Starting post_src_install"
|
|
post_src_install
|
|
ebuild_section "Done post_src_install"
|
|
fi
|
|
fi
|
|
}
|
|
|