diff --git a/sys-libs/libxcrypt/Manifest b/sys-libs/libxcrypt/Manifest index 707e4d36b..549808c62 100644 --- a/sys-libs/libxcrypt/Manifest +++ b/sys-libs/libxcrypt/Manifest @@ -1 +1,2 @@ +DIST libxcrypt-4.5.2-db70b42.tar.gz 575964 BLAKE2B 008aba1cd6286e6f414003eb1622603687b9de6fafe81d542b3a63d83570f4120fe14d255b3243cb0833277c82c182409032ab6b9b5902a7610853152a8fa25d SHA512 9da72eae12fee5974def97bcbccbf93905ec85e2781a4405a1c58ca5871fb338881d6f423c8af764968ed1234250c309a171f204d3b790557dee7b0e204bb4ee DIST libxcrypt_2.4.orig.tar.gz 361503 BLAKE2B 6347bea4b22ae7742cb516a0a8673bbd7c37f645b2dbb383f4c4a6bbcc95a12897068ab7354fa015bbb65f6dc331b95ce24b48aa4bdd7a57433d8f5bc245392d SHA512 7171ce1b5b7f949232c4db94cf98bdd6396c3e2a8f2f483c041cab92d752e3a2fa93d564ede7efece57c069df129e6cc03049cf3e3f07bd3556031a7c4197cbf diff --git a/sys-libs/libxcrypt/libxcrypt-4.5.2.ebuild b/sys-libs/libxcrypt/libxcrypt-4.5.2.ebuild new file mode 100644 index 000000000..92506a9e2 --- /dev/null +++ b/sys-libs/libxcrypt/libxcrypt-4.5.2.ebuild @@ -0,0 +1,30 @@ +# Distributed under the terms of the GNU General Public License v2 +# Autogen by MARK Devkit + +EAPI=7 + +DESCRIPTION="Extended crypt library for descrypt, md5crypt, bcrypt, and others" +HOMEPAGE="https://github.com/besser82/libxcrypt" +SRC_URI="https://api.github.com/repos/besser82/libxcrypt/tarball/v4.5.2 -> libxcrypt-4.5.2-db70b42.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="*" + +post_src_unpack() { + mv besser82-libxcrypt-* ${S} +} + + +src_configure() { + ./autogen.sh + # Do not install into /usr so that tcb and pam can use us. + econf --libdir=/$(get_libdir) --disable-static +} +src_install() { + default + prune_libtool_files +} + + + +# vim: filetype=ebuild