summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom William Payne <twp@gentoo.org>2004-03-26 20:13:59 +0000
committerTom William Payne <twp@gentoo.org>2004-03-26 20:13:59 +0000
commitb6521439de3be0e036fafcf0a241726b9206c182 (patch)
tree6fcbc62bbc4fa9a6834993d9612213d09c378970 /x11-wm/ion3
parentAdded IUSE. (Manifest recommit) (diff)
downloadgentoo-2-b6521439de3be0e036fafcf0a241726b9206c182.tar.gz
gentoo-2-b6521439de3be0e036fafcf0a241726b9206c182.tar.bz2
gentoo-2-b6521439de3be0e036fafcf0a241726b9206c182.zip
Digest missed by repoman
Diffstat (limited to 'x11-wm/ion3')
-rw-r--r--x11-wm/ion3/Manifest2
-rw-r--r--x11-wm/ion3/files/digest-ion3-20040316_p11
-rw-r--r--x11-wm/ion3/ion3-20040316.ebuild68
3 files changed, 1 insertions, 70 deletions
diff --git a/x11-wm/ion3/Manifest b/x11-wm/ion3/Manifest
index bf9acca79e6e..a75014c4569e 100644
--- a/x11-wm/ion3/Manifest
+++ b/x11-wm/ion3/Manifest
@@ -1,8 +1,6 @@
MD5 9ec08820d270739e7bc8b7607886393d ion3-20040316_p1.ebuild 1364
-MD5 bf3b18340e2542a12ec3a1b05d3d3cef ion3-20040316.ebuild 1422
MD5 762329578779e08e79ffee794882de27 ChangeLog 432
MD5 d992d28bec4a3bfd72b441145091a58e metadata.xml 244
MD5 6f74d19623693aaf001c28fb5d2657be files/digest-ion3-20040316_p1 70
MD5 5e2a511f6530e0cee20b7e6dfbebc3e7 files/ion3-20040316-libtu-I.patch 357
-MD5 efa8a8a6cc7967afcdebd064a8090c2d files/digest-ion3-20040316 68
MD5 aac436d9230b2b3cda72feb184295c1a files/ion.desktop 214
diff --git a/x11-wm/ion3/files/digest-ion3-20040316_p1 b/x11-wm/ion3/files/digest-ion3-20040316_p1
new file mode 100644
index 000000000000..d393e373d369
--- /dev/null
+++ b/x11-wm/ion3/files/digest-ion3-20040316_p1
@@ -0,0 +1 @@
+MD5 d15889f8e5a5731f376543d237d2be46 ion-3ds-20040316-1.tar.gz 414541
diff --git a/x11-wm/ion3/ion3-20040316.ebuild b/x11-wm/ion3/ion3-20040316.ebuild
deleted file mode 100644
index 346206568725..000000000000
--- a/x11-wm/ion3/ion3-20040316.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ion3-20040316.ebuild,v 1.1 2004/03/16 20:09:06 twp Exp $
-
-inherit eutils
-
-MY_PN=ion-3ds-${PV}
-DESCRIPTION="A tiling tabbed window manager designed with keyboard users in mind"
-HOMEPAGE="http://www.iki.fi/tuomov/ion/"
-SRC_URI="http://modeemi.fi/~tuomov/dl/${MY_PN}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~ppc ~sparc ~x86"
-IUSE="xinerama"
-DEPEND="virtual/x11
- app-misc/run-mailcap
- >=dev-lang/lua-5.0.2
- !x11-wm/ion
- !x11-wm/ion-devel
- !x11-wm/ion2"
-S=${WORKDIR}/${MY_PN}
-
-src_unpack() {
-
- unpack ${A}
- epatch ${FILESDIR}/ion3-20040316-libtu-I.patch
-
-}
-
-src_compile() {
-
- local myconf=""
-
- if has_version '>=x11-base/xfree-4.3.0'; then
- myconf="${myconf} --disable-xfree86-textprop-bug-workaround"
- fi
-
- econf \
- --sysconfdir=/etc/X11 \
- `use_enable xinerama` \
- ${myconf} || die
-
- emake \
- DOCDIR=/usr/share/doc/${PF} || die
-
-}
-
-src_install() {
-
- make \
- prefix=${D}/usr \
- ETCDIR=${D}/etc/X11/ion \
- SHAREDIR=${D}/usr/share/ion \
- MANDIR=${D}/usr/share/man \
- DOCDIR=${D}/usr/share/doc/${PF} \
- install || die
-
- prepalldocs
-
- echo -e "#!/bin/sh\n/usr/bin/ion" > ${T}/ion
- echo -e "#!/bin/sh\n/usr/bin/pwm" > ${T}/pwm
- exeinto /etc/X11/Sessions
- doexe ${T}/ion ${T}/pwm
-
- insinto /usr/share/xsessions
- doins ${FILESDIR}/ion.desktop
-
-}