# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header$ DESCRIPTION="WINGs Display Manager" HOMEPAGE="http://voins.program.ru/wdm/" SLOT="0" KEYWORDS="x86" LICENSE="GPL-2" IUSE="truetype pam png jpeg gif tiff" SRC_URI="http://voins.program.ru/wdm/${P}.tar.bz2" RDEPEND=">=x11-wm/WindowMaker-0.65.1" DEPEND="${RDEPEND} >=sys-devel/autoconf-2.53 >=x11-base/xfree-3.3.2 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" ./configure \ --prefix=/usr \ --exec-prefix=/usr \ ${myconf} || die emake || die } src_install() { make DESTDIR=${D} \ install || die }