xarthisius    14/04/24 20:46:17

  Modified:             ChangeLog
  Added:                i3-4.7.2-r1.ebuild
  Log:
  Respect CFLAGS during linking phase, make build parallel safe. Fixes #508304 
by Ferenc Erki <erkifer...@gmail.com> and #508426 by Julian Ospald 
<hasuf...@gentoo.org>. Thanks to hasufell for the patches
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
895192F9)

Revision  Changes    Path
1.48                 x11-wm/i3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/ChangeLog?rev=1.48&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/ChangeLog?rev=1.48&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   19 Apr 2014 09:51:40 -0000      1.47
+++ ChangeLog   24 Apr 2014 20:46:17 -0000      1.48
@@ -1,6 +1,15 @@
 # ChangeLog for x11-wm/i3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.47 2014/04/19 
09:51:40 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.48 2014/04/24 
20:46:17 xarthisius Exp $
+
+*i3-4.7.2-r1 (24 Apr 2014)
+
+  24 Apr 2014; Kacper Kowalik <xarthis...@gentoo.org>
+  +files/i3-4.7.2-cflags.patch, +files/i3-4.7.2-parallel_make.patch,
+  +i3-4.7.2-r1.ebuild:
+  Respect CFLAGS during linking phase, make build parallel safe. Fixes #508304
+  by Ferenc Erki <erkifer...@gmail.com> and #508426 by Julian Ospald
+  <hasuf...@gentoo.org>. Thanks to hasufell for the patches
 
   19 Apr 2014; Chema Alonso <nim...@gentoo.org> i3-4.7.2.ebuild:
   Stable for amd64 wrt bug #499098



1.1                  x11-wm/i3/i3-4.7.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/i3-4.7.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/i3-4.7.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: i3-4.7.2-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/i3-4.7.2-r1.ebuild,v 1.1 
2014/04/24 20:46:17 xarthisius Exp $

EAPI=5

inherit eutils toolchain-funcs

DESCRIPTION="An improved dynamic tiling window manager"
HOMEPAGE="http://i3wm.org/";
SRC_URI="http://i3wm.org/downloads/${P}.tar.bz2";

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+pango"

CDEPEND="dev-libs/libev
        dev-libs/libpcre
        dev-libs/yajl
        x11-libs/libxcb
        x11-libs/libX11
        x11-libs/startup-notification
        x11-libs/xcb-util
        x11-libs/xcb-util-cursor
        x11-libs/xcb-util-keysyms
        x11-libs/xcb-util-wm
        pango? (
                >=x11-libs/pango-1.30.0[X]
                >=x11-libs/cairo-1.12.2[X,xcb]
        )"
DEPEND="${CDEPEND}
        virtual/pkgconfig"
RDEPEND="${CDEPEND}"

DOCS=( RELEASE-NOTES-${PV} )

src_prepare() {
        if ! use pango; then
                sed -i common.mk -e '/PANGO/d' || die
        fi

        cat <<- EOF > "${T}"/i3wm
                #!/bin/sh
                exec /usr/bin/i3
        EOF

        epatch "${FILESDIR}"/${P}-cflags.patch\
                "${FILESDIR}"/${P}-parallel_make.patch
        epatch_user #471716
}

src_compile() {
        emake V=1 CC="$(tc-getCC)" AR="$(tc-getAR)"
}

src_install() {
        default
        dohtml -r docs/*
        doman man/*.1
        exeinto /etc/X11/Sessions
        doexe "${T}"/i3wm
}

pkg_postinst() {
        einfo "There are several packages that you may find useful with ${PN} 
and"
        einfo "their usage is suggested by the upstream maintainers, namely:"
        einfo "  x11-misc/dmenu"
        einfo "  x11-misc/i3status"
        einfo "  x11-misc/i3lock"
        einfo "Please refer to their description for additional info."
}




Reply via email to