diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-05-06 15:08:49 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-05-06 15:08:49 +0000 |
commit | cf7feae9d70e584be7ceb871f4dabb516f60ddac (patch) | |
tree | 6cfc1df10b3bec6b3931dcf7b69391bbc2f76d69 /x11-misc/xlockmore | |
parent | ppc stable, bug #177213 (diff) | |
download | gentoo-2-cf7feae9d70e584be7ceb871f4dabb516f60ddac.tar.gz gentoo-2-cf7feae9d70e584be7ceb871f4dabb516f60ddac.tar.bz2 gentoo-2-cf7feae9d70e584be7ceb871f4dabb516f60ddac.zip |
Remove old version.
(Portage version: 2.1.2.6)
Diffstat (limited to 'x11-misc/xlockmore')
-rw-r--r-- | x11-misc/xlockmore/files/digest-xlockmore-5.21-r1 | 3 | ||||
-rw-r--r-- | x11-misc/xlockmore/xlockmore-5.21-r1.ebuild | 78 |
2 files changed, 0 insertions, 81 deletions
diff --git a/x11-misc/xlockmore/files/digest-xlockmore-5.21-r1 b/x11-misc/xlockmore/files/digest-xlockmore-5.21-r1 deleted file mode 100644 index 086060de4fbc..000000000000 --- a/x11-misc/xlockmore/files/digest-xlockmore-5.21-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 eefe878d7efaa982ee53553c78534315 xlockmore-5.21.tar.bz2 1794442 -RMD160 6d7ba16538ed7f411bf00339a038cd2380977847 xlockmore-5.21.tar.bz2 1794442 -SHA256 1d5978d0577991f4bcff3a569e3b17e328b1588d946a7b4afad3def9cc40bfbd xlockmore-5.21.tar.bz2 1794442 diff --git a/x11-misc/xlockmore/xlockmore-5.21-r1.ebuild b/x11-misc/xlockmore/xlockmore-5.21-r1.ebuild deleted file mode 100644 index a5626af619cd..000000000000 --- a/x11-misc/xlockmore/xlockmore-5.21-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/xlockmore-5.21-r1.ebuild,v 1.11 2007/02/22 17:25:06 drac Exp $ - -inherit eutils pam flag-o-matic - -IUSE="nas esd motif opengl truetype gtk pam xlockrc unicode" - -DESCRIPTION="Just another screensaver application for X" -SRC_URI="http://ftp.tux.org/pub/tux/bagleyd/${PN}/${P}.tar.bz2" -HOMEPAGE="http://www.tux.org/~bagleyd/xlockmore.html" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="amd64 hppa ppc ppc64 sparc x86" - -RDEPEND="media-libs/mesa - x11-libs/libX11 - x11-libs/libXmu - x11-libs/libXext - x11-libs/libXdmcp - x11-libs/libXt - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xextproto - x11-proto/xproto - x11-proto/xineramaproto - media-libs/freetype - opengl? ( virtual/opengl ) - pam? ( virtual/pam ) - nas? ( media-libs/nas ) - esd? ( media-sound/esound ) - motif? ( x11-libs/openmotif ) - gtk? ( =x11-libs/gtk+-1.2* )" - -src_compile() { - local myconf - - use xlockrc && myconf="${myconf} --enable-xlockrc" - use opengl || myconf="${myconf} --without-opengl --without-gltt --without-mesa" - use unicode && myconf="${myconf} --enable-use-mb" - - econf \ - --sharedstatedir=${D}/usr/share/xlockmore \ - --enable-vtlock \ - --without-ftgl \ - $(use_enable pam) \ - $(use_with truetype ttf) \ - $(use_with gtk) \ - $(use_with motif) \ - $(use_with esd esound) \ - $(use_with nas) \ - ${myconf} \ - || die "econf failed" - - # fixes suid-with-lazy-bindings problem - append-flags $(bindnow-flags) - - emake || die "Make failed" -} - -src_install() { - einstall \ - xapploaddir=${D}/etc/X11/app-defaults \ - mandir=${D}/usr/share/man/man1 \ - || die "einstall failed" - - #Install pam.d file and unset setuid root - pamd_mimic_system xlock auth - use pam && chmod 755 ${D}/usr/bin/xlock - - insinto /usr/share/xlockmore/sounds - doins sounds/* - - dodoc docs/* README - dohtml docs/*.html - rm ${D}/usr/share/doc/${PF}/*.html.gz -} |