blob: 744443ef8d03c2854dd6c790b1b27abe5b788b66 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild,v 1.4 2014/07/24 16:16:07 klausman Exp $
EAPI=5
DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes."
HOMEPAGE="http://dev.gentoo.org/~blueness/install-xattr/"
inherit toolchain-funcs
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/elfix.git"
KEYWORDS="alpha hppa"
inherit git-2
else
SRC_URI="http://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2"
KEYWORDS="alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
S=${WORKDIR}/${PN}
fi
LICENSE="GPL-3"
SLOT="0"
src_prepare() {
tc-export CC
}
src_compile() {
if [[ ${PV} == "9999" ]] ; then
cd "${WORKDIR}/${P}/misc/${PN}"
fi
default
}
src_install() {
if [[ ${PV} == "9999" ]] ; then
cd "${WORKDIR}/${P}/misc/${PN}"
fi
default
}
# We need to fix how tests are done
src_test() {
true
}
|