1
0
Fork 0

First draft of xsecurelock

This commit is contained in:
Stefan Reimer 2016-06-02 19:30:14 -07:00
parent 6b19c224cc
commit 16a80f989f
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1 @@
EBUILD xsecurelock-9999.ebuild 896 SHA256 20952e3243c4c40de4d6a800c17b1bd2b395f9ca13b62b87c6caab6a74e7dc31 SHA512 d959256946ed58079a756e0fe8742be37b073cc0173b1e29836c5258fd2a8b5e2585370991c9c2ce1ba3d70a0615b7fa9b502c871ef85bccb65414aa9ce9289f WHIRLPOOL d7c83758373963d116ed9e1ac029f004033fd5b570dca0b07aac8da11fa16598fb9f18aae60e7dbe9d543d30669392532678cc135481fac54b4af9c29b640d6d

View File

@ -0,0 +1,52 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools autotools-utils
if [[ ${PV} = 9999 ]]; then
inherit git-2
fi
DESCRIPTION="X11 screen lock utility with security in mind"
HOMEPAGE="https://github.com/google/xsecurelock"
if [[ ${PV} = 9999 ]]; then
EGIT_REPO_URI="https://github.com/google/${PN}"
EGIT_BOOTSTRAP=""
KEYWORDS=""
else
SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
SLOT="0"
LICENSE="Apache"
RDEPEND="x11-libs/libX11
x11-libs/libXScrnSaver"
DEPEND="${RDEPEND}
"
src_prepare() {
eautoreconf
}
src_configure() {
local myeconfargs=(
--with-pam-service-name=system-auth
--prefix=/usr
)
autotools-utils_src_configure
}
src_compile() {
autotools-utils_src_compile
}
src_install() {
autotools-utils_src_install
}