blob: ed5011374fbbef41e4d9614e023b04922f133410 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.15.92.0.2-r2.ebuild,v 1.15 2005/01/10 02:19:02 vapier Exp $
PATCHVER="1.2"
UCLIBC_PATCHVER="1.1"
inherit toolchain-binutils
KEYWORDS="-* ~alpha ~amd64 -arm ~hppa ~ia64 ~sparc ~x86"
src_unpack() {
toolchain-binutils_src_unpack
# Patches
cd ${WORKDIR}/patch
mkdir skip
mv *ldsoconf* *no_rel_ro* skip/
if use uclibc ; then
mv *relro* skip/
else
mv 20_* skip/
fi
apply_binutils_updates
}
|