From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OHgIX-0001Ow-Nj for garchives@archives.gentoo.org; Thu, 27 May 2010 16:51:10 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81DFBE073F; Thu, 27 May 2010 16:51:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 39C40E080B for ; Thu, 27 May 2010 16:51:05 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 21F9E1B4005 for ; Thu, 27 May 2010 16:51:05 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2271) id CF8592CF38; Thu, 27 May 2010 16:51:03 +0000 (UTC) From: "Kacper Kowalik (xarthisius)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, xarthisius@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/aewm: aewm-1.2.7.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: aewm-1.2.7.ebuild ChangeLog X-VCS-Directories: x11-wm/aewm X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik Content-Type: text/plain; charset=utf8 Message-Id: <20100527165103.CF8592CF38@corvid.gentoo.org> Date: Thu, 27 May 2010 16:51:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 56d14fc2-309b-4b52-a3c4-afd3edfdc9a0 X-Archives-Hash: 73a3c89ba0e2b2c2d8009809307bb287 xarthisius 10/05/27 16:51:03 Modified: aewm-1.2.7.ebuild ChangeLog Log: Respect user flags wrt bug 237698, do not pre-strip files wrt bug 25211= 8 (Portage version: 2.1.8.3/cvs/Linux x86_64) Revision Changes Path 1.10 x11-wm/aewm/aewm-1.2.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/aewm/aewm-1= .2.7.ebuild?rev=3D1.10&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/aewm/aewm-1= .2.7.ebuild?rev=3D1.10&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/aewm/aewm-1= .2.7.ebuild?r1=3D1.9&r2=3D1.10 Index: aewm-1.2.7.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/x11-wm/aewm/aewm-1.2.7.ebuild,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- aewm-1.2.7.ebuild 17 Jan 2010 16:16:45 -0000 1.9 +++ aewm-1.2.7.ebuild 27 May 2010 16:51:03 -0000 1.10 @@ -1,6 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/aewm/aewm-1.2.7.ebuild,v 1.9 2= 010/01/17 16:16:45 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/aewm/aewm-1.2.7.ebuild,v 1.10 = 2010/05/27 16:51:03 xarthisius Exp $ + +inherit eutils toolchain-funcs =20 DESCRIPTION=3D"A minimalistic X11 window manager." HOMEPAGE=3D"http://www.red-bean.com/~decklin/software/aewm/" @@ -36,11 +38,23 @@ sed -i \ -e 's/lucidasans-10/-adobe-helvetica-bold-r-normal--*-120-*-*-*-*-*-*/= ' \ src/aewmrc.sample || die "sed failed" + + # QA: Remove stripping + sed -i \ + -e 's/install -s/install /' \ + {src,clients}/Makefile || die "sed failed" + + epatch "${FILESDIR}"/${P}-ldflags.patch +} + +src_compile() { + tc-export CC + emake CC=3D"${CC}" CFLAGS=3D"${CFLAGS}" LDFLAGS=3D"${LDFLAGS}" || die } =20 src_install() { - dodir /usr/bin - dodir /usr/share/man/man1 + dodir /usr/bin || die + dodir /usr/share/man/man1 || die =20 emake \ DESTDIR=3D"${D}" \ @@ -48,5 +62,5 @@ XROOT=3D"/usr" \ install || die "emake install failed" =20 - dodoc DESIGN NEWS README TODO + dodoc DESIGN NEWS README TODO || die } 1.25 x11-wm/aewm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/aewm/Change= Log?rev=3D1.25&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/aewm/Change= Log?rev=3D1.25&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/aewm/Change= Log?r1=3D1.24&r2=3D1.25 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/x11-wm/aewm/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ChangeLog 17 Jan 2010 16:16:45 -0000 1.24 +++ ChangeLog 27 May 2010 16:51:03 -0000 1.25 @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/aewm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/aewm/ChangeLog,v 1.24 2010/01/= 17 16:16:45 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/aewm/ChangeLog,v 1.25 2010/05/= 27 16:51:03 xarthisius Exp $ + + 27 May 2010; Kacper Kowalik aewm-1.2.7.ebuild, + +files/aewm-1.2.7-ldflags.patch: + Respect user flags wrt bug 237698, do not pre-strip files wrt bug 2521= 18. + Thanks Diego for reporting. =20 17 Jan 2010; Ulrich Mueller aewm-1.2.7.ebuild: Change LICENSE, "aewm" is the same as "MIT 9wm".