diff options
Diffstat (limited to 'x11-wm/ion3/ion3-20040906.ebuild')
-rw-r--r-- | x11-wm/ion3/ion3-20040906.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/x11-wm/ion3/ion3-20040906.ebuild b/x11-wm/ion3/ion3-20040906.ebuild new file mode 100644 index 000000000000..2ab34cdec3e0 --- /dev/null +++ b/x11-wm/ion3/ion3-20040906.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ion3-20040906.ebuild,v 1.1 2004/09/06 18:55:40 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 + >=sys-devel/libtool-1.4.3 + !x11-wm/ion3-svn" +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 + + autoreconf + + 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 \ + 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 + +} + +pkg_postinst() { + ewarn Binaries, directories, etc. have been renamed from ion to ion3. + ewarn You might need to update your configuration files. +} |