From a2da0bfeaa5e4a8a79e252efda8d943a80ef5613 Mon Sep 17 00:00:00 2001 From: Lucio Sauer Date: Sun, 2 Jul 2023 22:28:19 +0200 Subject: [PATCH] dev-libs/lsbcrypt: drop 1.0.0 Signed-off-by: Lucio Sauer --- dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild diff --git a/dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild b/dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild deleted file mode 100644 index ab505bdd82..0000000000 --- a/dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake git-r3 - -DESCRIPTION="libcrypt Wrapper for LiteSpeedTech" -HOMEPAGE="https://github.com/litespeedtech/libbcrypt/" -EGIT_REPO_URI="https://github.com/litespeedtech/libbcrypt/" - -LICENSE="CC0-1.0" -SLOT="0" -KEYWORDS="" - -src_prepare() { - eapply_user -} - -src_configure() { - true -} - -src_compile() { - make -} - -src_install() { - true -} - -pkg_preinst() { - mkdir -p ${D}/usr/lib/ - mkdir -p ${D}/usr/include/ - cp -a ${S}/bcrypt.h ${D}/usr/include/ - cp -a ${S}/bcrypt.a ${D}/usr/lib/ -}