diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-01-28 09:03:49 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-01-28 09:03:49 +0000 |
commit | 8e9962a41996d0643ee73d61ae0a946ecb6784e5 (patch) | |
tree | 1c0b7db23c66e806204582c6a8775d88ccad14de | |
parent | app-office/scribus: Fix 1.5 live ebuild to latest HEAD Changes (diff) | |
download | gentoo-2-8e9962a41996d0643ee73d61ae0a946ecb6784e5.tar.gz gentoo-2-8e9962a41996d0643ee73d61ae0a946ecb6784e5.tar.bz2 gentoo-2-8e9962a41996d0643ee73d61ae0a946ecb6784e5.zip |
Make compiler calls visible.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)
-rw-r--r-- | x11-misc/lsw/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/lsw/lsw-0.3.ebuild | 12 |
2 files changed, 12 insertions, 7 deletions
diff --git a/x11-misc/lsw/ChangeLog b/x11-misc/lsw/ChangeLog index 191beba5600f..42ad8f74bee0 100644 --- a/x11-misc/lsw/ChangeLog +++ b/x11-misc/lsw/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/lsw -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lsw/ChangeLog,v 1.12 2014/12/01 13:00:39 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lsw/ChangeLog,v 1.13 2015/01/28 09:03:49 jer Exp $ + + 28 Jan 2015; Jeroen Roovers <jer@gentoo.org> lsw-0.3.ebuild: + Make compiler calls visible. *lsw-0.3 (01 Dec 2014) diff --git a/x11-misc/lsw/lsw-0.3.ebuild b/x11-misc/lsw/lsw-0.3.ebuild index fd43584acb78..d6ace2464ec5 100644 --- a/x11-misc/lsw/lsw-0.3.ebuild +++ b/x11-misc/lsw/lsw-0.3.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lsw/lsw-0.3.ebuild,v 1.1 2014/12/01 13:00:39 jer Exp $ - -EAPI="4" +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lsw/lsw-0.3.ebuild,v 1.2 2015/01/28 09:03:49 jer Exp $ +EAPI=5 inherit toolchain-funcs DESCRIPTION="list window names" @@ -13,7 +12,6 @@ SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RDEPEND="x11-libs/libX11" DEPEND="${RDEPEND} @@ -24,6 +22,10 @@ src_prepare() { -e '/^CC/d' \ -e '/^CFLAGS/{s| -Os||;s|=|+=|}' \ -e '/^LDFLAGS/{s|=|+=|;s| -s||}' || die + sed -i \ + -e 's|^\t@|\t|g' \ + -e '/^\techo/d' \ + Makefile || die } src_compile() { |