diff options
author | Ben Lutgens <blutgens@gentoo.org> | 2001-06-04 16:56:37 +0000 |
---|---|---|
committer | Ben Lutgens <blutgens@gentoo.org> | 2001-06-04 16:56:37 +0000 |
commit | d1bafff69c8401f7e86c7e1601a3679f73ee93e2 (patch) | |
tree | 32998684f11dca2218b963b747a95d5d96aca517 /app-misc/xlockmore | |
parent | Sorry bout that, had the ebuild filename all hosed up, portage don't like that. (diff) | |
download | gentoo-2-d1bafff69c8401f7e86c7e1601a3679f73ee93e2.tar.gz gentoo-2-d1bafff69c8401f7e86c7e1601a3679f73ee93e2.tar.bz2 gentoo-2-d1bafff69c8401f7e86c7e1601a3679f73ee93e2.zip |
A new screensaver for X
Diffstat (limited to 'app-misc/xlockmore')
-rw-r--r-- | app-misc/xlockmore/files/digest-xlockmore-5.01.2 | 1 | ||||
-rw-r--r-- | app-misc/xlockmore/xlockmore-5.01.2.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/app-misc/xlockmore/files/digest-xlockmore-5.01.2 b/app-misc/xlockmore/files/digest-xlockmore-5.01.2 new file mode 100644 index 000000000000..35e6d7e3f59c --- /dev/null +++ b/app-misc/xlockmore/files/digest-xlockmore-5.01.2 @@ -0,0 +1 @@ +MD5 773a682068874117aaa31d842aa9de56 xlockmore-5.01.2.tar.gz diff --git a/app-misc/xlockmore/xlockmore-5.01.2.ebuild b/app-misc/xlockmore/xlockmore-5.01.2.ebuild new file mode 100644 index 000000000000..f89bda3e189f --- /dev/null +++ b/app-misc/xlockmore/xlockmore-5.01.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <blutgens@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-misc/xlockmore/xlockmore-5.01.2.ebuild,v 1.1 2001/06/04 16:56:37 blutgens Exp $ + +#P= +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Just another screensaver application for X" +SRC_URI="ftp://ftp.tux.org/pub/tux/bagleyd/xlockmore/${A}" +HOMEPAGE="http://www.tux.org/~bagleyd/xlockmore.html" + +DEPEND="opengl? ( >=media-libs/mesa-3.4.2 )" + +src_compile() { + + local myconf + if [ "`use pam`" ] ; then + myconf="--enable-pam" + fi + if [ -z "`use nas`" ] ; then + myconf="--disable-nas" + fi + if [ "`use esd`" ] ; then + myconf="--enable-esd" + fi + if [ -z "`use opengl`" ] ; then + myconf="--disable-mesa" + fi + + try ./configure --prefix=/usr --mandir=${prefix}/share/man \ + --host=${CHOST} ${myconf} + try make + +} + +src_install () { + + try make prefix=${D}/usr mandir=${D}/usr/share/man install + dodoc docs/* README + +} + |