diff options
author | 2003-06-25 04:13:40 +0000 | |
---|---|---|
committer | 2003-06-25 04:13:40 +0000 | |
commit | becaa95923b3900f5967dc27a1477933e4c53ea2 (patch) | |
tree | 578e3b864d0d44c953995a47fd150e7cf50b7afc /x11-misc/wdm/wdm-1.25.ebuild | |
parent | save/restore SANDBOX_ON properly (diff) | |
download | historical-becaa95923b3900f5967dc27a1477933e4c53ea2.tar.gz historical-becaa95923b3900f5967dc27a1477933e4c53ea2.tar.bz2 historical-becaa95923b3900f5967dc27a1477933e4c53ea2.zip |
Version bump.
Diffstat (limited to 'x11-misc/wdm/wdm-1.25.ebuild')
-rw-r--r-- | x11-misc/wdm/wdm-1.25.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-misc/wdm/wdm-1.25.ebuild b/x11-misc/wdm/wdm-1.25.ebuild new file mode 100644 index 000000000000..0cd8ef0f84b6 --- /dev/null +++ b/x11-misc/wdm/wdm-1.25.ebuild @@ -0,0 +1,42 @@ +# 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.25.ebuild,v 1.1 2003/06/25 04:13:23 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" + +DEPEND="${RDEPEND} + virtual/x11 + sys-devel/gettext + truetype? ( virtual/xft )" +RDEPEND=">=x11-wm/windowmaker-0.65.1" + +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 \ + --with-wdmdir=/etc/X11/wdm \ + ${myconf} || die + emake || die +} + +src_install() { + rm ${D}/etc/pam.d/wdm + insinto /etc/pam.d + doins ${FILESDIR}/wdm + + make DESTDIR=${D} install || die +} |