diff options
author | Tom William Payne <twp@gentoo.org> | 2004-02-28 10:02:12 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2004-02-28 10:02:12 +0000 |
commit | 0938f4585b94c84ba4c6b9275243fa55372a41ca (patch) | |
tree | 7267544995f263c448a497de156760a46d6cba13 /x11-wm/ion2 | |
parent | initial ebuild #41382 (diff) | |
download | gentoo-2-0938f4585b94c84ba4c6b9275243fa55372a41ca.tar.gz gentoo-2-0938f4585b94c84ba4c6b9275243fa55372a41ca.tar.bz2 gentoo-2-0938f4585b94c84ba4c6b9275243fa55372a41ca.zip |
Minor ebuild fixes
Diffstat (limited to 'x11-wm/ion2')
-rw-r--r-- | x11-wm/ion2/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/ion2/Manifest | 2 | ||||
-rw-r--r-- | x11-wm/ion2/files/digest-ion2-20040211-r1 | 1 | ||||
-rw-r--r-- | x11-wm/ion2/ion2-20040211-r1.ebuild | 81 |
4 files changed, 90 insertions, 1 deletions
diff --git a/x11-wm/ion2/ChangeLog b/x11-wm/ion2/ChangeLog index bcad2304957f..795efd84baf1 100644 --- a/x11-wm/ion2/ChangeLog +++ b/x11-wm/ion2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/ion2 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion2/ChangeLog,v 1.2 2004/02/11 10:15:38 twp Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion2/ChangeLog,v 1.3 2004/02/28 10:02:12 twp Exp $ + +*ion2-20040211-r1 (28 Feb 2004) + + 28 Feb 2004; Tom Payne <twp@gentoo.org> ion2-20040211-r1.ebuild : + Minor ebuild fixes. *ion2-20040211 (11 Feb 2004) diff --git a/x11-wm/ion2/Manifest b/x11-wm/ion2/Manifest index cbc3f2e22c07..d90a7377df0e 100644 --- a/x11-wm/ion2/Manifest +++ b/x11-wm/ion2/Manifest @@ -2,7 +2,9 @@ MD5 c04e5d6c0dd7b8e28ba0ed878b9dde83 ion2-20040207.ebuild 1701 MD5 d992d28bec4a3bfd72b441145091a58e metadata.xml 244 MD5 d67edfb145d6498366a918c8b2caab50 ChangeLog 496 MD5 9be7f2e2e5b76586305b2c2c8107d942 ion2-20040211.ebuild 1773 +MD5 b64e95839999a7b73dd4db3853291c28 ion2-20040211-r1.ebuild 1787 MD5 16c6e0f00bd204d2f612b781d7b73f54 files/xftde-20040207.patch 18552 MD5 91e9228c6c714b8031f826c8523a2274 files/digest-ion2-20040207 66 MD5 0b7705816fa1d59203e2ebd35db2632d files/ion2-20040207-20040211.patch 8684 MD5 91e9228c6c714b8031f826c8523a2274 files/digest-ion2-20040211 66 +MD5 91e9228c6c714b8031f826c8523a2274 files/digest-ion2-20040211-r1 66 diff --git a/x11-wm/ion2/files/digest-ion2-20040211-r1 b/x11-wm/ion2/files/digest-ion2-20040211-r1 new file mode 100644 index 000000000000..403f80c42ca4 --- /dev/null +++ b/x11-wm/ion2/files/digest-ion2-20040211-r1 @@ -0,0 +1 @@ +MD5 d20cde38bdc15e7e4824cf1140440f51 ion-2-20040207.tar.gz 376466 diff --git a/x11-wm/ion2/ion2-20040211-r1.ebuild b/x11-wm/ion2/ion2-20040211-r1.ebuild new file mode 100644 index 000000000000..1cf9f9436707 --- /dev/null +++ b/x11-wm/ion2/ion2-20040211-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion2/ion2-20040211-r1.ebuild,v 1.1 2004/02/28 10:02:12 twp Exp $ + +inherit eutils + +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/ion-2-20040207.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~hppa ~mips ~ppc ~sparc ~x86" +IUSE="truetype xinerama" +DEPEND="virtual/x11 + app-misc/run-mailcap + >=dev-lang/lua-5.0.1_beta20031003" +S=${WORKDIR}/ion-2-20040207 + +src_unpack() { + + unpack ${A} + + cd ${S} + + epatch ${FILESDIR}/ion2-20040207-20040211.patch + + if [ `use truetype` ]; then + mkdir xftde + cp de/{*.c,*.h,Makefile} xftde + ( cd xftde && epatch ${FILESDIR}/xftde-20040207.patch ) + sed -i modulelist.mk \ + -e 's/^\(MODULE_LIST =\)/\1 xftde/g' + fi + +} + +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 + + insinto /usr/include/ion + doins *.h *.mk mkexports.lua + for i in de floatws ioncore ionws luaextl menu query; do + insinto /usr/include/ion/${i} + doins ${i}/*.h + done + insinto /usr/include/ion/libtu + doins libtu/include/libtu/* + + 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 + +} |