diff options
Diffstat (limited to 'meta/recipes-devtools/elfutils/elfutils_0.108.bb')
-rw-r--r-- | meta/recipes-devtools/elfutils/elfutils_0.108.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.108.bb b/meta/recipes-devtools/elfutils/elfutils_0.108.bb new file mode 100644 index 0000000000..67f34a0acd --- /dev/null +++ b/meta/recipes-devtools/elfutils/elfutils_0.108.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SECTION = "base" | ||
2 | LICENSE = "OSL" | ||
3 | DESCRIPTION = "A collection of utilities and DSOs to handle compiled objects." | ||
4 | DEPENDS = "libtool" | ||
5 | PR = "r2" | ||
6 | |||
7 | SRC_URI = "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/elfutils-${PV}.tar.gz \ | ||
8 | file://warnings.patch;patch=1" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | # Package binaries that overlap with binutils separately | ||
13 | PACKAGES =+ "${PN}-binutils" | ||
14 | FILES_${PN}-binutils = "\ | ||
15 | ${bindir}/addr2line \ | ||
16 | ${bindir}/ld \ | ||
17 | ${bindir}/nm \ | ||
18 | ${bindir}/readelf \ | ||
19 | ${bindir}/size \ | ||
20 | ${bindir}/strip" | ||
21 | # Fix library issues | ||
22 | FILES_${PN} =+ "${libdir}/*-${PV}.so" | ||
23 | |||
24 | # The elfutils package contains symlinks that trip up insane | ||
25 | INSANE_SKIP_elfutils = "1" | ||