summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2011-07-13 08:28:08 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2011-07-13 08:28:08 +0000
commit81814bc041e41ffef840e1d77d650a43a834cfe3 (patch)
tree6e7c96e3a30394448d314df5a5bcd90f4dab8148 /x11-wm/i3/i3-9999.ebuild
parentapp-antivirus/clamtk: Version bump. Added language file ug. Using EAPI 4 (diff)
downloadsunrise-81814bc041e41ffef840e1d77d650a43a834cfe3.tar.gz
sunrise-81814bc041e41ffef840e1d77d650a43a834cfe3.tar.bz2
sunrise-81814bc041e41ffef840e1d77d650a43a834cfe3.zip
x11-wm/i3: moved to g-x86, fixes bug 267476. Live ebuild will be available in dev/xarthisius.git
svn path=/sunrise/; revision=12227
Diffstat (limited to 'x11-wm/i3/i3-9999.ebuild')
-rw-r--r--x11-wm/i3/i3-9999.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/x11-wm/i3/i3-9999.ebuild b/x11-wm/i3/i3-9999.ebuild
deleted file mode 100644
index 9294c033c..000000000
--- a/x11-wm/i3/i3-9999.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-EGIT_REPO_URI="git://code.stapelberg.de/i3"
-EGIT_BRANCH="next"
-
-inherit git multilib
-
-DESCRIPTION="An improved dynamic tiling window manager"
-HOMEPAGE="http://i3.zekjur.net/"
-SRC_URI=""
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug doc"
-
-RDEPEND=">=x11-libs/libxcb-1.1.93
- >=x11-libs/xcb-util-0.3.3
- x11-libs/libX11
- dev-libs/libev
- dev-libs/yajl"
-DEPEND="${RDEPEND}
- >=x11-proto/xcb-proto-1.3
- >=app-text/asciidoc-8.3
- app-text/xmlto
- app-text/docbook-xml-dtd
- sys-devel/bison
- sys-devel/flex"
-
-src_prepare() {
- use debug || { sed -i -e "s:DEBUG=1:DEBUG=0:" common.mk || die "sed die - debug" ; }
- sed -i \
- -e "s:/usr/local/include:/usr/include:" \
- -e "s:/usr/local/lib:/usr/$(get_libdir):" \
- common.mk || die "sed die"
-}
-
-src_compile() {
- emake || die "emake compile die"
- emake -C man || die "emake man die"
- use doc && { emake -C docs || die "emake docs die" ; }
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install die"
- dodoc GOALS TODO CMDMODE || die "dodoc die"
- doman man/*.1 || die "doman die"
- if use doc; then
- dohtml -r docs/*.html || die "dohtml die"
- elog "Documentation in html is in /etc/share/doc/${P}"
- fi
-}