diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-02-29 18:01:47 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-02-29 18:01:47 +0000 |
commit | ceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (patch) | |
tree | 9f47ee47c31a0f13f9496879cd88a1042550aa81 /dev-libs/libtpms | |
parent | 53cba99042fa967e2a93da9f8db806fe2d035543 (diff) |
gentoo (leap year) resync : 29.02.2020
Diffstat (limited to 'dev-libs/libtpms')
-rw-r--r-- | dev-libs/libtpms/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/libtpms/libtpms-0.7.0-r1.ebuild (renamed from dev-libs/libtpms/libtpms-0.7.0.ebuild) | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/dev-libs/libtpms/Manifest b/dev-libs/libtpms/Manifest index dfe08e2b6f67..f7e44913d30c 100644 --- a/dev-libs/libtpms/Manifest +++ b/dev-libs/libtpms/Manifest @@ -1,3 +1,3 @@ DIST libtpms-0.7.0.tar.gz 1203837 BLAKE2B ca5a3b78dc63c09c4ff084124838fedeb5be0580f709ad6165680159ba7ba4b1f751b9fbc67f6b5a8f39b82bdd420afb47087412a47b72cbe5b418a97a4860fe SHA512 92d1eb5d1a1cae08e97cceaca56fc9bc6d43c54a93edae2accf19807a4e93e19d88064a0b11db796c79d32c821e6b320ebbacb65cd20da3e5b1205f3b861cef2 -EBUILD libtpms-0.7.0.ebuild 526 BLAKE2B 8b2733898a602de83f3c5fba8c036776cf861d0499017c3ce159c6b81ab70e5c28c897ede2256136f0e189b2195c2c127020459a80f26399748bbab5f612bc57 SHA512 97930480883c9b12f459df78854e3e89e21225169d9d4c0c594f3bf2f3aa8d25e9c0712b93420f90594604f9a481032d510544eb2c6d08e513a2386870fbad4c +EBUILD libtpms-0.7.0-r1.ebuild 663 BLAKE2B fede09b0b2dc21512c6b36c29764d38d3171887ff58ca893c52f21c7ae8734c598ba0e6b12f550becc154a59181d86f86c9207c40accfa56f9cbd971140364e8 SHA512 653431c4728c6efa1f0e0449f2ae41b5791806afc00e8f53e31b0460b4fc947498c245d928c30705c2b2911206dfa06da4877b425a4561fbbcd602051cd0d398 MISC metadata.xml 370 BLAKE2B eb4d1a4a8e56cbdcb5b7f86029feb6e2151967f7b4801fbb3a8c2de35840969a4987ca2aada95792cb35ab03702715b1f66fe966c176969de743c64775bed0cb SHA512 5a2f5a0089bb0c54dd36821005a65cbe8c4fd05f1d7e0367eaff02031a39c749e005e5432da334081304af8c55b330b549821819455f1f0919d4525a254ca5c6 diff --git a/dev-libs/libtpms/libtpms-0.7.0.ebuild b/dev-libs/libtpms/libtpms-0.7.0-r1.ebuild index ea28c3dd94fe..b13d07d50237 100644 --- a/dev-libs/libtpms/libtpms-0.7.0.ebuild +++ b/dev-libs/libtpms/libtpms-0.7.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,8 +11,10 @@ SRC_URI="https://github.com/stefanberger/libtpms/archive/v${PV}.tar.gz -> ${P}.t LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" +IUSE="libressl" -DEPEND="dev-libs/openssl:0=" +DEPEND=" !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" RDEPEND="${DEPEND}" src_prepare() { @@ -25,3 +27,8 @@ src_configure() { --with-openssl \ --with-tpm2 } + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |