summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Smith <smithj@gentoo.org>2005-06-13 23:35:35 +0000
committerJonathan Smith <smithj@gentoo.org>2005-06-13 23:35:35 +0000
commit941c276a701ef64c53f9def9e01979dbe50d65c8 (patch)
tree0a47ed6497b74f9fe0f9262f174d03a5571a877a /x11-misc/xlockmore/xlockmore-5.04.ebuild
parentMarking 1.2.1 stable (x86). Removing old ebuild. (diff)
downloadgentoo-2-941c276a701ef64c53f9def9e01979dbe50d65c8.tar.gz
gentoo-2-941c276a701ef64c53f9def9e01979dbe50d65c8.tar.bz2
gentoo-2-941c276a701ef64c53f9def9e01979dbe50d65c8.zip
#93159, cleanup, version bump
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'x11-misc/xlockmore/xlockmore-5.04.ebuild')
-rw-r--r--x11-misc/xlockmore/xlockmore-5.04.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/x11-misc/xlockmore/xlockmore-5.04.ebuild b/x11-misc/xlockmore/xlockmore-5.04.ebuild
deleted file mode 100644
index 055520a82721..000000000000
--- a/x11-misc/xlockmore/xlockmore-5.04.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/xlockmore-5.04.ebuild,v 1.6 2004/07/15 00:57:23 agriffis Exp $
-
-IUSE="nas esd motif opengl truetype gtk pam"
-
-DESCRIPTION="Just another screensaver application for X"
-SRC_URI="http://cvs.gentoo.org/~mholzer/${P}.tar.bz2
- mirror://gentoo/${P}.tar.bz2"
-HOMEPAGE="http://www.tux.org/~bagleyd/xlockmore.html"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="x86 sparc"
-
-DEPEND="virtual/x11
- media-libs/freetype
- opengl? ( virtual/opengl )
- pam? ( sys-libs/pam )
- nas? ( media-libs/nas )
- esd? ( media-sound/esound )
- motif? ( x11-libs/openmotif )
- gtk? ( =x11-libs/gtk+-1.2* )"
-
-src_compile() {
- local myconf
- use pam && myconf="${myconf} --enable-pam" \
- || myconf="${myconf} --disable-pam --enable-xlockrc"
- use nas || myconf="${myconf} --without-nas"
- use esd && myconf="${myconf} --with-esound"
- use opengl || myconf="${myconf} --without-opengl --without-gltt --without-mesa"
- use truetype || myconf="${myconf} --without-ttf"
-
- use motif || myconf="${myconf} --without-motif"
- use gtk || myconf="${myconf} --without-gtk"
-
- ./configure \
- --prefix=/usr \
- --mandir=${prefix}/share/man/man1 \
- --sharedstatedir=/usr/share/xlockmore \
- --host=${CHOST} ${myconf} || die "Configure failed"
-
- emake || die "Make failed"
-
-}
-
-src_install() {
- make install \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man/man1 \
- xapploaddir=${D}/usr/X11R6/lib/X11/app-defaults \
- || die "Install failed"
-
- #Install pam.d file and unset setuid root
- if use pam; then
- insinto /etc/pam.d
- newins etc/xlock.pamd xlock
- chmod 111 ${D}/usr/bin/xlock
- fi
-
- insinto /usr/share/xlockmore/sounds
- doins sounds/*
-
- dodoc docs/* README
- dohtml docs/*.html
- rm ${D}/usr/share/doc/${PF}/*.html.gz
-}