diff options
author | 2022-11-20 22:09:36 +0000 | |
---|---|---|
committer | 2022-11-20 22:09:36 +0000 | |
commit | b783faffc88d845229396a32951ed3f3d6564d00 (patch) | |
tree | 14253b7d1c0fe8a327b520312bd56e064197077e /sys-apps/gptfdisk | |
parent | sys-apps/opentmpfiles: update EAPI 6 -> 8 (diff) | |
download | gentoo-b783faffc88d845229396a32951ed3f3d6564d00.tar.gz gentoo-b783faffc88d845229396a32951ed3f3d6564d00.tar.bz2 gentoo-b783faffc88d845229396a32951ed3f3d6564d00.zip |
sys-apps/gptfdisk: drop 1.0.9-r1
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sys-apps/gptfdisk')
-rw-r--r-- | sys-apps/gptfdisk/gptfdisk-1.0.9-r1.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/sys-apps/gptfdisk/gptfdisk-1.0.9-r1.ebuild b/sys-apps/gptfdisk/gptfdisk-1.0.9-r1.ebuild deleted file mode 100644 index de190d603dca..000000000000 --- a/sys-apps/gptfdisk/gptfdisk-1.0.9-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="GPT partition table manipulator for Linux" -HOMEPAGE="https://www.rodsbooks.com/gdisk/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" -IUSE="ncurses static" - -# libuuid from util-linux is required. -RDEPEND="!static? ( - dev-libs/popt - ncurses? ( sys-libs/ncurses:=[unicode(+)] ) - kernel_linux? ( sys-apps/util-linux ) - )" -DEPEND=" - ${RDEPEND} - static? ( - dev-libs/popt[static-libs(+)] - ncurses? ( sys-libs/ncurses:=[unicode(+),static-libs(+)] ) - kernel_linux? ( sys-apps/util-linux[static-libs(+)] ) - ) - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}/${P}-libuuid.patch" #844073 -) - -src_prepare() { - default - - tc-export CXX PKG_CONFIG - - if ! use ncurses ; then - sed -i \ - -e '/^all:/s: cgdisk::' \ - Makefile || die - fi - - sed \ - -e '/g++/s:=:?=:g' \ - -e 's:-lncursesw:$(shell $(PKG_CONFIG) --libs ncursesw):g' \ - -i Makefile || die - - use static && append-ldflags -static -} - -src_install() { - dosbin gdisk sgdisk $(usex ncurses cgdisk '') fixparts - doman *.8 - dodoc NEWS README -} |