diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2014-07-18 19:33:46 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2014-07-18 19:33:46 +0000 |
commit | 7fc9f4dcb204e061b898daa7605b8eb4ab8354db (patch) | |
tree | 19121dce40fef028aa1c1599d65bdfe12fc0515d /x11-misc | |
parent | version bump (diff) | |
download | gentoo-2-7fc9f4dcb204e061b898daa7605b8eb4ab8354db.tar.gz gentoo-2-7fc9f4dcb204e061b898daa7605b8eb4ab8354db.tar.bz2 gentoo-2-7fc9f4dcb204e061b898daa7605b8eb4ab8354db.zip |
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 895192F9)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/i3lock/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/i3lock/i3lock-2.6.ebuild | 39 |
2 files changed, 46 insertions, 2 deletions
diff --git a/x11-misc/i3lock/ChangeLog b/x11-misc/i3lock/ChangeLog index b8117ee1b3ec..91b435120238 100644 --- a/x11-misc/i3lock/ChangeLog +++ b/x11-misc/i3lock/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/i3lock -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3lock/ChangeLog,v 1.18 2013/12/07 14:25:06 xarthisius Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3lock/ChangeLog,v 1.19 2014/07/18 19:33:46 xarthisius Exp $ + +*i3lock-2.6 (18 Jul 2014) + + 18 Jul 2014; Kacper Kowalik <xarthisius@gentoo.org> +i3lock-2.6.ebuild: + Version bump 07 Dec 2013; Kacper Kowalik <xarthisius@gentoo.org> -i3lock-2.4.1.ebuild: drop old diff --git a/x11-misc/i3lock/i3lock-2.6.ebuild b/x11-misc/i3lock/i3lock-2.6.ebuild new file mode 100644 index 000000000000..b105fe92f325 --- /dev/null +++ b/x11-misc/i3lock/i3lock-2.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3lock/i3lock-2.6.ebuild,v 1.1 2014/07/18 19:33:46 xarthisius Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="Simple screen locker" +HOMEPAGE="http://i3wm.org/i3lock/" +SRC_URI="http://i3wm.org/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="virtual/pam + dev-libs/libev + >=x11-libs/libxkbcommon-0.3.1[X] + x11-libs/libxcb[xkb] + x11-libs/xcb-util + x11-libs/cairo[xcb]" +DEPEND="${RDEPEND} + virtual/pkgconfig" +DOCS=( CHANGELOG README ) + +pkg_setup() { + tc-export CC +} + +src_prepare() { + sed -i -e 's:login:system-auth:' ${PN}.pam || die +} + +src_install() { + default + doman ${PN}.1 +} |