diff options
author | Tom William Payne <twp@gentoo.org> | 2004-03-23 20:59:15 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2004-03-23 20:59:15 +0000 |
commit | b42f0581ebeb39b55081c86801f793b8b014debf (patch) | |
tree | 9ff1732156241699079b041ecb9c5d6f0782aba3 /x11-wm | |
parent | Missed by repoman (diff) | |
download | gentoo-2-b42f0581ebeb39b55081c86801f793b8b014debf.tar.gz gentoo-2-b42f0581ebeb39b55081c86801f793b8b014debf.tar.bz2 gentoo-2-b42f0581ebeb39b55081c86801f793b8b014debf.zip |
Version bump.
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/ion3/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/ion3/Manifest | 4 | ||||
-rw-r--r-- | x11-wm/ion3/ion3-20040316_p1.ebuild | 62 |
3 files changed, 71 insertions, 2 deletions
diff --git a/x11-wm/ion3/ChangeLog b/x11-wm/ion3/ChangeLog index 3611b532b5bc..1e6d7ae7c6a2 100644 --- a/x11-wm/ion3/ChangeLog +++ b/x11-wm/ion3/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/ion3 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ChangeLog,v 1.1 2004/03/16 20:09:06 twp Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ChangeLog,v 1.2 2004/03/23 20:59:15 twp Exp $ + +*ion3-20040316_p1 (23 Mar 2004) + + 23 Mar 2004; Tom Payne <twp@gentoo.org> ion3-20040316_p1.ebuild : + Version bump. *ion3-20040316 (16 Mar 2004) diff --git a/x11-wm/ion3/Manifest b/x11-wm/ion3/Manifest index 93d897ac0948..741a7c8eb0d9 100644 --- a/x11-wm/ion3/Manifest +++ b/x11-wm/ion3/Manifest @@ -1,6 +1,8 @@ +MD5 f57268d6551e4c6c12e19bb40fd46366 ion3-20040316_p1.ebuild 1361 MD5 bf3b18340e2542a12ec3a1b05d3d3cef ion3-20040316.ebuild 1422 -MD5 9ba4ee8e6cd43d8c251ea3c528864bea ChangeLog 314 +MD5 6121f7570f161fd9a18df1c7611c4146 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/ion3-20040316_p1.ebuild b/x11-wm/ion3/ion3-20040316_p1.ebuild new file mode 100644 index 000000000000..55306f088616 --- /dev/null +++ b/x11-wm/ion3/ion3-20040316_p1.ebuild @@ -0,0 +1,62 @@ +# 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_p1.ebuild,v 1.1 2004/03/23 20:59:15 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.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_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 + +} |