diff options
Diffstat (limited to 'x11-misc/slock/slock-9999.ebuild')
-rw-r--r-- | x11-misc/slock/slock-9999.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/slock/slock-9999.ebuild b/x11-misc/slock/slock-9999.ebuild new file mode 100644 index 000000000..6c720fb78 --- /dev/null +++ b/x11-misc/slock/slock-9999.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit mercurial toolchain-funcs flag-o-matic + +DESCRIPTION="simple X screen locker" +HOMEPAGE="http://tools.suckless.org/view/x+tools" +SRC_URI="" +EHG_REPO_URI=http://suckless.org/cgi-bin/hgwebdir.cgi/${PN} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="sys-libs/glibc + x11-libs/libX11" +RDEPEND=${DEPEND} + +S=${WORKDIR}/${PN} + +src_unpack() { + mercurial_src_unpack + cd "${S}" + + sed -i \ + -e "s/.*strip.*//" \ + Makefile || die "sed failed" + + sed -i \ + -e "s/CFLAGS = -Os/CFLAGS +=/" \ + -e "s/LDFLAGS =/LDFLAGS +=/" \ + config.mk || die "sed failed" +} + +src_compile() { + append-ldflags "-Wl,-z,now" + emake CC=$(tc-getCC) || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed" + + dodoc README +} |