blob: d1006009911508859eda9e50af9187c148a3c888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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.16.1.ebuild,v 1.1 2005/06/12 22:42:36 vapier Exp $
PATCHVER="1.0"
UCLIBC_PATCHVER="1.0"
inherit toolchain-binutils
# ARCH - packages to test before marking
KEYWORDS="-* ~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
src_unpack() {
tc-binutils_unpack
# Patches
cd "${WORKDIR}"/patch
# FreeBSD patches are not safe
[[ ${CTARGET} != *-freebsd* ]] \
&& mv 00_all_freebsd* skip/ \
|| rm -f "${WORKDIR}"/uclibc-patches/40*all-libcs*
tc-binutils_apply_patches
}
|