diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2012-09-19 20:03:42 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2012-09-19 20:03:42 +0000 |
commit | 836cc6ae3bcf2035e86d8f082e1cd90fa959be58 (patch) | |
tree | 9bed8b36008a50e21f1951724727f464b227f76d /x11-wm/i3 | |
parent | Remove bits that were left from ebuild development (diff) | |
download | gentoo-2-836cc6ae3bcf2035e86d8f082e1cd90fa959be58.tar.gz gentoo-2-836cc6ae3bcf2035e86d8f082e1cd90fa959be58.tar.bz2 gentoo-2-836cc6ae3bcf2035e86d8f082e1cd90fa959be58.zip |
Remove obsolete sed, simplify ebuild
(Portage version: 2.2.0_alpha124/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/i3')
-rw-r--r-- | x11-wm/i3/ChangeLog | 5 | ||||
-rw-r--r-- | x11-wm/i3/i3-4.3.ebuild | 17 |
2 files changed, 10 insertions, 12 deletions
diff --git a/x11-wm/i3/ChangeLog b/x11-wm/i3/ChangeLog index 72ad4cd26cb6..f94bb244fcee 100644 --- a/x11-wm/i3/ChangeLog +++ b/x11-wm/i3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-wm/i3 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.25 2012/09/19 19:56:41 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.26 2012/09/19 20:03:42 xarthisius Exp $ + + 19 Sep 2012; Kacper Kowalik <xarthisius@gentoo.org> i3-4.3.ebuild: + Remove obsolete sed, simplify ebuild 19 Sep 2012; Kacper Kowalik <xarthisius@gentoo.org> i3-4.3.ebuild: Remove bits that were left from ebuild development diff --git a/x11-wm/i3/i3-4.3.ebuild b/x11-wm/i3/i3-4.3.ebuild index e24c29991727..961f57ba70ee 100644 --- a/x11-wm/i3/i3-4.3.ebuild +++ b/x11-wm/i3/i3-4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/i3-4.3.ebuild,v 1.3 2012/09/19 19:56:41 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/i3-4.3.ebuild,v 1.4 2012/09/19 20:03:42 xarthisius Exp $ EAPI=4 @@ -40,18 +40,9 @@ RDEPEND="${CDEPEND} DOCS=( RELEASE-NOTES-${PV} ) -pkg_setup() { - tc-export CC -} - src_prepare() { - sed -i common.mk \ - -e "/DEBUG=/ s/1/0/" \ - -e '/O2\|reorder\-blocks\|SILENT/d' || die - if ! use pango; then - sed -i common.mk \ - -e '/PANGO/d' || die + sed -i common.mk -e '/PANGO/d' || die fi cat <<- EOF > "${T}"/i3wm @@ -60,6 +51,10 @@ src_prepare() { EOF } +src_compile() { + emake V=1 CC="$(tc-getCC)" +} + src_install() { default dohtml -r docs/* |