diff options
author | Tom William Payne <twp@gentoo.org> | 2006-01-15 17:33:07 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2006-01-15 17:33:07 +0000 |
commit | eb7d54de7d0176f23356734740605bccac5c8eae (patch) | |
tree | 6d51a64fb1dbf431588dba81103a81da226d6bd4 /x11-wm | |
parent | Fixing mirror syntax (diff) | |
download | gentoo-2-eb7d54de7d0176f23356734740605bccac5c8eae.tar.gz gentoo-2-eb7d54de7d0176f23356734740605bccac5c8eae.tar.bz2 gentoo-2-eb7d54de7d0176f23356734740605bccac5c8eae.zip |
Remove old version. ion3 is still under development and should not be marked stable.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/ion3/ChangeLog | 8 | ||||
-rw-r--r-- | x11-wm/ion3/files/digest-ion3-20050116 | 1 | ||||
-rw-r--r-- | x11-wm/ion3/ion3-20050116.ebuild | 68 |
3 files changed, 6 insertions, 71 deletions
diff --git a/x11-wm/ion3/ChangeLog b/x11-wm/ion3/ChangeLog index 8bb7671c9859..f10677167356 100644 --- a/x11-wm/ion3/ChangeLog +++ b/x11-wm/ion3/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/ion3 -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ChangeLog,v 1.29 2005/12/10 22:31:44 twp Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ChangeLog,v 1.30 2006/01/15 17:33:07 twp Exp $ + + 15 Jan 2006; Tom Payne <twp@gentoo.org> -ion3-20050116.ebuild: + Remove old version. ion3 is still under development and should not be marked + stable. *ion3-20051210 (10 Dec 2005) diff --git a/x11-wm/ion3/files/digest-ion3-20050116 b/x11-wm/ion3/files/digest-ion3-20050116 deleted file mode 100644 index ffc3a87e6476..000000000000 --- a/x11-wm/ion3/files/digest-ion3-20050116 +++ /dev/null @@ -1 +0,0 @@ -MD5 77ac5dbbf478f95cb74299092453f9ac ion-3ds-20050116.tar.gz 543482 diff --git a/x11-wm/ion3/ion3-20050116.ebuild b/x11-wm/ion3/ion3-20050116.ebuild deleted file mode 100644 index b130bc41c804..000000000000 --- a/x11-wm/ion3/ion3-20050116.ebuild +++ /dev/null @@ -1,68 +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-20050116.ebuild,v 1.7 2005/07/01 21:55:21 josejx 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 amd64 ~hppa ia64 ppc sparc x86" -IUSE="xinerama" -DEPEND="virtual/x11 - app-misc/run-mailcap - >=dev-lang/lua-5.0.2" -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 - -} |