diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-02-19 07:14:55 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-02-19 07:14:55 +0000 |
commit | 21f97ba82074fbde8fe8d6e07440dde9d55c59c6 (patch) | |
tree | 09e1713252a97662cf4bdb198e79f7a542d6dd6d /x11-misc/wdm/wdm-1.22.ebuild | |
parent | marked stable fixed some major bugs (diff) | |
download | gentoo-2-21f97ba82074fbde8fe8d6e07440dde9d55c59c6.tar.gz gentoo-2-21f97ba82074fbde8fe8d6e07440dde9d55c59c6.tar.bz2 gentoo-2-21f97ba82074fbde8fe8d6e07440dde9d55c59c6.zip |
initial import, closes bug# 15660
Diffstat (limited to 'x11-misc/wdm/wdm-1.22.ebuild')
-rw-r--r-- | x11-misc/wdm/wdm-1.22.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/x11-misc/wdm/wdm-1.22.ebuild b/x11-misc/wdm/wdm-1.22.ebuild new file mode 100644 index 000000000000..de576939c05d --- /dev/null +++ b/x11-misc/wdm/wdm-1.22.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wdm/wdm-1.22.ebuild,v 1.1 2003/02/19 07:14:55 bcowan Exp $ +IUSE="truetype pam png jpeg gif tiff" + +DESCRIPTION="WINGs Display Manager" +HOMEPAGE="http://voins.program.ru/wdm/" +SRC_URI="http://voins.program.ru/${PN}/${P}.tar.bz2" + +SLOT="0" +KEYWORDS="~x86" +LICENSE="GPL-2" + +RDEPEND=">=x11-wm/WindowMaker-0.65.1" + +DEPEND="${RDEPEND} + virtual/x11 + truetype? ( x11-libs/xft )" + +src_compile() { + local myconf="" + use pam && myconf="${myconf} --enable-pam" + use png || myconf="${myconf} --disable-png" + use jpeg || myconf="${myconf} --disable-jpeg" + use gif || myconf="${myconf} --disable-gif" + use tiff || myconf="${myconf} --disable-tiff" + + econf \ + --exec-prefix=/usr \ + ${myconf} || die + + emake || die +} + +src_install() { + rm ${D}/etc/pam.d/wdm + insinto /etc/pam.d + doins ${FILESDIR}/wdm + + make DESTDIR=${D} install || die +} |