diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-25 04:13:40 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-25 04:13:40 +0000 |
commit | becaa95923b3900f5967dc27a1477933e4c53ea2 (patch) | |
tree | 578e3b864d0d44c953995a47fd150e7cf50b7afc /x11-misc/wdm | |
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')
-rw-r--r-- | x11-misc/wdm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/wdm/Manifest | 6 | ||||
-rw-r--r-- | x11-misc/wdm/files/digest-wdm-1.25 | 1 | ||||
-rw-r--r-- | x11-misc/wdm/wdm-1.25.ebuild | 42 |
4 files changed, 53 insertions, 3 deletions
diff --git a/x11-misc/wdm/ChangeLog b/x11-misc/wdm/ChangeLog index 3f5950c18040..119528edc979 100644 --- a/x11-misc/wdm/ChangeLog +++ b/x11-misc/wdm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/wdm # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wdm/ChangeLog,v 1.3 2003/04/18 01:50:16 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wdm/ChangeLog,v 1.4 2003/06/25 04:13:23 bcowan Exp $ + +*wdm-1.25 (25 Jun 2003) + + 25 Jun 2003; Brad Cowan <bcowan@gentoo.org> wdm-1.25.ebuild: + Version bump. *wdm-1.22 (19 Feb 2003) diff --git a/x11-misc/wdm/Manifest b/x11-misc/wdm/Manifest index d1fbc6d3098e..340df26fc1c0 100644 --- a/x11-misc/wdm/Manifest +++ b/x11-misc/wdm/Manifest @@ -1,4 +1,6 @@ -MD5 881fe55d56a6c86cf08dcb597f19074c ChangeLog 615 MD5 13103e1c21a417a301d1799608f9c3ae wdm-1.22.ebuild 1036 -MD5 ad9aca5a30f358cec9faf0040d5f956f files/digest-wdm-1.22 61 +MD5 ebbea1971114a9c0d2ed4be514d85cf3 ChangeLog 721 +MD5 7d1b3678b801bbc293a8b28224973477 wdm-1.25.ebuild 1031 MD5 2d6e9593eae8b7cc30202c7a86074f5d files/wdm 381 +MD5 ad9aca5a30f358cec9faf0040d5f956f files/digest-wdm-1.22 61 +MD5 14bbdbbf5672fc9f38817342c29a0f49 files/digest-wdm-1.25 61 diff --git a/x11-misc/wdm/files/digest-wdm-1.25 b/x11-misc/wdm/files/digest-wdm-1.25 new file mode 100644 index 000000000000..d2bc7f3af9c1 --- /dev/null +++ b/x11-misc/wdm/files/digest-wdm-1.25 @@ -0,0 +1 @@ +MD5 7e9c6f1a9755529d4336b9212fb1b7de wdm-1.25.tar.bz2 450665 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 +} |