diff options
author | Mike Gilbert <floppym@gentoo.org> | 2018-09-30 13:54:37 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2018-09-30 13:55:09 -0400 |
commit | 0728f77261bb2d645f755996ede8c0119e39ebc1 (patch) | |
tree | a4c550bb2a6f0448340d3a56e975a3a9eaf8fdfa /dev-libs/botan | |
parent | www-client/chromium: beta channel bump (70.0.3538.35) (diff) | |
download | gentoo-0728f77261bb2d645f755996ede8c0119e39ebc1.tar.gz gentoo-0728f77261bb2d645f755996ede8c0119e39ebc1.tar.bz2 gentoo-0728f77261bb2d645f755996ede8c0119e39ebc1.zip |
dev-libs/botan: fixup ED references for EAPI 7
Closes: https://bugs.gentoo.org/667258
Package-Manager: Portage-2.3.50_p10, Repoman-2.3.11_p17
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'dev-libs/botan')
-rw-r--r-- | dev-libs/botan/botan-1.10.17-r1.ebuild (renamed from dev-libs/botan/botan-1.10.17.ebuild) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/botan/botan-1.10.17.ebuild b/dev-libs/botan/botan-1.10.17-r1.ebuild index 3288e91d07f7..755972c0fc64 100644 --- a/dev-libs/botan/botan-1.10.17.ebuild +++ b/dev-libs/botan/botan-1.10.17-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -128,15 +128,15 @@ src_test() { } src_install() { - emake DESTDIR="${ED}usr" install + emake DESTDIR="${ED}/usr" install if ! use static-libs; then - rm "${ED}usr/$(get_libdir)/libbotan"*.a || die 'remove of static libs failed' + rm "${ED}/usr/$(get_libdir)/libbotan"*.a || die 'remove of static libs failed' fi # Add compatibility symlinks. - [[ -e "${ED}usr/bin/botan-config" ]] && die "Compatibility code no longer needed" - [[ -e "${ED}usr/$(get_libdir)/pkgconfig/botan.pc" ]] && die "Compatibility code no longer needed" + [[ -e "${ED}/usr/bin/botan-config" ]] && die "Compatibility code no longer needed" + [[ -e "${ED}/usr/$(get_libdir)/pkgconfig/botan.pc" ]] && die "Compatibility code no longer needed" dosym botan-config-1.10 /usr/bin/botan-config dosym botan-1.10.pc /usr/$(get_libdir)/pkgconfig/botan.pc |