blob: 1e3368d1f11c92fc8fe0363615fe694182dbbb95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/bin/bash
# vim: set sw=4 sts=4 et :
# Copyright (c) 2008 Ciaran McCreesh
#
# 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
builtin_installbin()
{
echo tar jvxpf ${!PALUDIS_BINARY_DISTDIR_VARIABLE}/${A} -C "${IMAGE}"/ --exclude PBIN 1>&2
tar jvxpf ${!PALUDIS_BINARY_DISTDIR_VARIABLE}/${A} -C "${IMAGE}"/ --exclude PBIN || die "Couldn't extract image"
}
generic_internal_installbin()
{
if hasq "installbin" ${RESTRICT} ; then
ebuild_section "Skipping builtin_installbin (RESTRICT)"
elif hasq "init" ${SKIP_FUNCTIONS} ; then
ebuild_section "Skipping builtin_installbin (SKIP_FUNCTIONS)"
else
ebuild_section "Starting builtin_installbin"
builtin_installbin
ebuild_section "Done builtin_installbin"
fi
}
ebuild_f_installbin()
{
generic_internal_installbin "$@"
}
exheres_internal_installbin()
{
generic_internal_installbin "$@"
}
|