summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-01-26 06:28:29 +0000
committerSven Wegener <swegener@gentoo.org>2005-01-26 06:28:29 +0000
commitbe8c7adc643b321531b794b6512ec7f929944b07 (patch)
tree59fae60bb062320ce2b160df23c49aa7faff113a /x11-wm/ion3
parentAdd some testing so error messages (which were safe to ignore) don't display ... (diff)
downloadhistorical-be8c7adc643b321531b794b6512ec7f929944b07.tar.gz
historical-be8c7adc643b321531b794b6512ec7f929944b07.tar.bz2
historical-be8c7adc643b321531b794b6512ec7f929944b07.zip
Really remove the files.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'x11-wm/ion3')
-rw-r--r--x11-wm/ion3/Manifest11
-rw-r--r--x11-wm/ion3/files/digest-ion3-200410051
-rw-r--r--x11-wm/ion3/ion3-20041005.ebuild69
3 files changed, 10 insertions, 71 deletions
diff --git a/x11-wm/ion3/Manifest b/x11-wm/ion3/Manifest
index 4a114b88113f..fdab506ed422 100644
--- a/x11-wm/ion3/Manifest
+++ b/x11-wm/ion3/Manifest
@@ -1,4 +1,6 @@
-MD5 9596129feaea284a4beb62c1f3cd8a33 ion3-20041005.ebuild 1602
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
MD5 1a2f03e50839cd1db9fd80f64943167c ion3-20041104.ebuild 1602
MD5 e8fd7d8620ae55b86f4038518b9c2227 ion3-20050116.ebuild 1603
MD5 5687e35c0345d75fa6051e0ac4f283a3 ion3-20050102.ebuild 1603
@@ -10,3 +12,10 @@ MD5 00450ed1292b72e2be71b9860c4db6ee files/ion3.desktop 217
MD5 77190ca80118b92a5f9ea71208de23ca files/digest-ion3-20050102 68
MD5 f5a4c637813405c5a7b6a5fa8c68c748 files/digest-ion3-20050116 68
MD5 aac436d9230b2b3cda72feb184295c1a files/ion.desktop 214
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.9.10 (GNU/Linux)
+
+iD8DBQFB9ziVI1lqEGTUzyQRArcBAJ4v3TW3tk3Zq1tjiTM0qJRvbr/K5QCcDa4u
+fakoQmn+0cwZi66CJVT5lAE=
+=FMdb
+-----END PGP SIGNATURE-----
diff --git a/x11-wm/ion3/files/digest-ion3-20041005 b/x11-wm/ion3/files/digest-ion3-20041005
deleted file mode 100644
index 4aa4725cc27e..000000000000
--- a/x11-wm/ion3/files/digest-ion3-20041005
+++ /dev/null
@@ -1 +0,0 @@
-MD5 51a0d72275585e4d8da5c3318499b878 ion-3ds-20041005.tar.gz 520439
diff --git a/x11-wm/ion3/ion3-20041005.ebuild b/x11-wm/ion3/ion3-20041005.ebuild
deleted file mode 100644
index a55d3e15492b..000000000000
--- a/x11-wm/ion3/ion3-20041005.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ion3-20041005.ebuild,v 1.3 2005/01/01 21:08:14 twp Exp $
-
-inherit eutils
-
-MY_PV=${PV/_p/-}
-MY_PN=ion-3ds-${MY_PV}
-DESCRIPTION="A tiling tabbed window manager designed with keyboard users in mind"
-HOMEPAGE="http://www.iki.fi/tuomov/ion/"
-SRC_URI="http://modeemi.cs.tut.fi/~tuomov/ion/dl/${MY_PN}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~ppc ~sparc x86 ~amd64 ~hppa"
-IUSE="xinerama"
-DEPEND="virtual/x11
- app-misc/run-mailcap
- >=dev-lang/lua-5.0.2
- !x11-wm/ion3-svn"
-S=${WORKDIR}/${MY_PN}
-
-src_compile() {
-
- autoreconf
-
- local myconf=""
-
- if has_version '>=x11-base/xfree-4.3.0'; then
- myconf="${myconf} --disable-xfree86-textprop-bug-workaround"
- fi
-
- use hppa && myconf="${myconf} --disable-shared"
-
- 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/ion3 \
- SHAREDIR=${D}/usr/share/ion3 \
- MANDIR=${D}/usr/share/man \
- DOCDIR=${D}/usr/share/doc/${PF} \
- LOCALEDIR=${D}/usr/share/locale \
- LIBDIR=${D}/usr/lib \
- MODULEDIR=${D}/usr/lib/ion3/mod \
- LCDIR=${D}/usr/lib/ion3/lc \
- VARDIR=${D}/var/cache/ion3 \
- install || die
-
- prepalldocs
-
- echo -e "#!/bin/sh\n/usr/bin/ion3" > ${T}/ion3
- echo -e "#!/bin/sh\n/usr/bin/pwm3" > ${T}/pwm3
- exeinto /etc/X11/Sessions
- doexe ${T}/ion3 ${T}/pwm3
-
- insinto /usr/share/xsessions
- doins ${FILESDIR}/ion3.desktop ${FILESDIR}/pwm3.desktop
-
-}