Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sys-libs/libxcrypt/Manifest
Original file line number Diff line number Diff line change
@@ -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
30 changes: 30 additions & 0 deletions sys-libs/libxcrypt/libxcrypt-4.5.2.ebuild
Original file line number Diff line number Diff line change
@@ -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