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 1SXdh2-0000rJ-Sl for garchives@archives.gentoo.org; Thu, 24 May 2012 19:27:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 806F8E07F0; Thu, 24 May 2012 19:27:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4260AE07CC for ; Thu, 24 May 2012 19:27:21 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFD9B1B4010 for ; Thu, 24 May 2012 19:27:19 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id B628D2004B; Thu, 24 May 2012 19:27:18 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/ctemplate: ctemplate-1.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: ctemplate-1.0.ebuild ChangeLog X-VCS-Directories: dev-cpp/ctemplate X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: <20120524192718.B628D2004B@flycatcher.gentoo.org> Date: Thu, 24 May 2012 19:27:18 +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: ace4f91a-152d-4700-8618-b84ff422c20c X-Archives-Hash: 519810fc87c056e93537712c6cff91a9 vapier 12/05/24 19:27:18 Modified: ctemplate-1.0.ebuild ChangeLog Log: Use `default` in src_install, and add patch for building with gcc-4.7. =20 (Portage version: 2.2.0_alpha107_p3/cvs/Linux x86_64) Revision Changes Path 1.7 dev-cpp/ctemplate/ctemplate-1.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/= ctemplate-1.0.ebuild?rev=3D1.7&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/= ctemplate-1.0.ebuild?rev=3D1.7&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/= ctemplate-1.0.ebuild?r1=3D1.6&r2=3D1.7 Index: ctemplate-1.0.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/dev-cpp/ctemplate/ctemplate-1.0.ebuild,= v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ctemplate-1.0.ebuild 13 Feb 2012 16:29:14 -0000 1.6 +++ ctemplate-1.0.ebuild 24 May 2012 19:27:18 -0000 1.7 @@ -1,10 +1,10 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-1.0.ebuil= d,v 1.6 2012/02/13 16:29:14 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-1.0.ebuil= d,v 1.7 2012/05/24 19:27:18 vapier Exp $ =20 EAPI=3D"4" =20 -inherit elisp-common python +inherit elisp-common python eutils =20 DESCRIPTION=3D"A simple but powerful template language for C++" HOMEPAGE=3D"http://code.google.com/p/google-ctemplate/" @@ -28,6 +28,10 @@ fi } =20 +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc-4.7.patch +} + src_configure() { econf \ --enable-shared \ @@ -43,7 +47,7 @@ } =20 src_install() { - emake DESTDIR=3D"${D}" install + default =20 # Installs just every piece rm -rf "${ED}/usr/share/doc" @@ -64,7 +68,7 @@ elisp-site-file-install "${FILESDIR}/${SITEFILE}" fi =20 - find "${ED}" -name '*.la' -exec rm -f {} + + find "${ED}"/usr -name '*.la' -delete } =20 pkg_postinst() { 1.23 dev-cpp/ctemplate/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/= ChangeLog?rev=3D1.23&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/= ChangeLog?rev=3D1.23&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/ctemplate/= ChangeLog?r1=3D1.22&r2=3D1.23 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/dev-cpp/ctemplate/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- ChangeLog 20 Apr 2012 17:55:00 -0000 1.22 +++ ChangeLog 24 May 2012 19:27:18 -0000 1.23 @@ -1,6 +1,10 @@ # ChangeLog for dev-cpp/ctemplate # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.22 20= 12/04/20 17:55:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.23 20= 12/05/24 19:27:18 vapier Exp $ + + 24 May 2012; Mike Frysinger + +files/ctemplate-1.0-gcc-4.7.patch, ctemplate-1.0.ebuild: + Use `default` in src_install, and add patch for building with gcc-4.7. =20 *ctemplate-2.2 (20 Apr 2012) =20