overlay/sys-auth/pam_e4crypt/pam_e4crypt-0.1.ebuild

29 lines
659 B
Bash
Raw Normal View History

2018-05-08 06:50:18 +02:00
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="PAM module for unlocking transparently encrypted directories on ext4"
HOMEPAGE="https://github.com/neithernut/pam_e4crypt"
SRC_URI="https://github.com/neithernut/pam_e4crypt/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=">=virtual/pam-0-r1
2018-06-21 21:44:07 +02:00
>=sys-apps/keyutils-1.5.9-r4
>=dev-libs/openssl-1.0.2o"
2018-05-08 06:50:18 +02:00
DEPEND=">=dev-util/cmake-3.9.6
2018-06-21 21:44:07 +02:00
${RDEPEND}"
2018-05-08 06:50:18 +02:00
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_LIBDIR="/$(get_libdir)"
)
cmake-utils_src_configure
}