diff options
author | Mike Gilbert <floppym@gentoo.org> | 2017-07-02 11:37:41 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2017-07-02 11:37:41 -0400 |
commit | bc66500710ec040ef242342447694d91f1ffa8f0 (patch) | |
tree | ad21ebfdbfe1fef95fbf09e4ed0b3e774c263a25 /sys-boot/systemd-boot/systemd-boot-232.ebuild | |
parent | sys-boot/systemd-boot: restrict test (diff) | |
download | gentoo-bc66500710ec040ef242342447694d91f1ffa8f0.tar.gz gentoo-bc66500710ec040ef242342447694d91f1ffa8f0.tar.bz2 gentoo-bc66500710ec040ef242342447694d91f1ffa8f0.zip |
sys-boot/systemd-boot: remove old
Package-Manager: Portage-2.3.6_p9, Repoman-2.3.2_p77
Diffstat (limited to 'sys-boot/systemd-boot/systemd-boot-232.ebuild')
-rw-r--r-- | sys-boot/systemd-boot/systemd-boot-232.ebuild | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/sys-boot/systemd-boot/systemd-boot-232.ebuild b/sys-boot/systemd-boot/systemd-boot-232.ebuild deleted file mode 100644 index 11a9e7452899..000000000000 --- a/sys-boot/systemd-boot/systemd-boot-232.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils toolchain-funcs - -DESCRIPTION="UEFI boot manager from systemd (formerly gummiboot)" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/" -SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> systemd-${PV}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1 MIT public-domain" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -COMMON_DEPEND=" - >=sys-apps/util-linux-2.27.1:0= - sys-libs/libcap:= -" -DEPEND="${COMMON_DEPEND} - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xml-dtd:4.5 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt:0 - >=dev-util/intltool-0.50 - >=sys-boot/gnu-efi-3.0.2 -" -RDEPEND="${COMMON_DEPEND} - !sys-apps/systemd -" - -S="${WORKDIR}/systemd-${PV}" - -PATCHES=( - "${FILESDIR}"/232-0002-build-sys-add-check-for-gperf-lookup-function-signat.patch -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - EFI_CC="$(tc-getPROG "EFI_CC CC" gcc)" - cc_cv_CFLAGS__flto=no - cc_cv_LDFLAGS__Wl__fuse_ld_gold=no - --enable-blkid - --enable-efi - --enable-gnuefi - --disable-acl - --disable-apparmor - --disable-audit - --disable-bzip2 - --disable-elfutils - --disable-gcrypt - --disable-gnutls - --disable-kmod - --disable-libcryptsetup - --disable-libcurl - --disable-libidn - --disable-lz4 - --disable-microhttpd - --disable-myhostname - --disable-pam - --disable-qrencode - --disable-seccomp - --disable-selinux - --disable-xkbcommon - --disable-xz - --disable-zlib - ) - econf "${myeconfargs[@]}" -} - -src_compile() { - local targets=( - libsystemd-shared.la - bootctl - man/bootctl.1 - man/kernel-install.8 - '$(bootlib_DATA)' - ) - emake built-sources - echo "gentoo: ${targets[*]}" | emake -f Makefile -f - gentoo -} - -src_install() { - local args=( - DESTDIR="${D%/}" - - # libsystemd-shared - rootlibexec_LTLIBRARIES=libsystemd-shared.la - install-rootlibexecLTLIBRARIES - - # bootctl - bin_PROGRAMS=bootctl - install-binPROGRAMS - - # kernel-install - install-dist_binSCRIPTS - install-dist_kernelinstallSCRIPTS - - man_MANS="man/bootctl.1 man/kernel-install.8" - install-man1 - install-man8 - - install-bootlibDATA - ) - emake "${args[@]}" - prune_libtool_files - einstalldocs -} |