public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tomas Chvatal (scarabeus)" <scarabeus@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/pth: ChangeLog pth-2.0.7-r3.ebuild
Date: Wed, 11 Jan 2012 11:03:18 +0000 (UTC)	[thread overview]
Message-ID: <20120111110318.2EA802004B@flycatcher.gentoo.org> (raw)

scarabeus    12/01/11 11:03:18

  Modified:             ChangeLog pth-2.0.7-r3.ebuild
  Log:
  Bump to eapi4 and make static libs optional.
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.70                 dev-libs/pth/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/pth/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/pth/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/pth/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	23 Jun 2011 14:44:10 -0000	1.69
+++ ChangeLog	11 Jan 2012 11:03:18 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/pth
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.69 2011/06/23 14:44:10 hwoarang Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.70 2012/01/11 11:03:18 scarabeus Exp $
+
+  11 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org> pth-2.0.7-r3.ebuild:
+  Bump to eapi4 and make static libs optional.
 
   23 Jun 2011; Markos Chandras <hwoarang@gentoo.org> -pth-2.0.7-r2.ebuild:
   Remove old ebuilds. Requested by Arfrever



1.6                  dev-libs/pth/pth-2.0.7-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/pth/pth-2.0.7-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/pth/pth-2.0.7-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/pth/pth-2.0.7-r3.ebuild?r1=1.5&r2=1.6

Index: pth-2.0.7-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.7-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pth-2.0.7-r3.ebuild	21 May 2011 19:57:38 -0000	1.5
+++ pth-2.0.7-r3.ebuild	11 Jan 2012 11:03:18 -0000	1.6
@@ -1,6 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.7-r3.ebuild,v 1.5 2011/05/21 19:57:38 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.7-r3.ebuild,v 1.6 2012/01/11 11:03:18 scarabeus Exp $
+
+EAPI=4
 
 inherit eutils fixheadtails libtool flag-o-matic
 
@@ -11,14 +13,14 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="debug"
+IUSE="debug static-libs"
 
 DEPEND=""
 RDEPEND="${DEPEND}"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+DOCS="ANNOUNCE AUTHORS ChangeLog NEWS README THANKS USERS"
+
+src_prepare() {
 	epatch "${FILESDIR}"/${PN}-2.0.5-parallelfix.patch
 	epatch "${FILESDIR}"/${PN}-2.0.6-ldflags.patch
 	epatch "${FILESDIR}"/${PN}-2.0.6-sigstack.patch
@@ -30,19 +32,18 @@
 	elibtoolize
 }
 
-src_compile() {
+src_configure() {
 	# bug 350815
 	( use arm || use sh ) && append-flags -U_FORTIFY_SOURCE
 
 	local conf
 	use debug && conf="${conf} --enable-debug"	# have a bug --disable-debug and shared
-	econf ${conf} || die
-	emake || die
+	econf \
+		${conf} \
+		$(use_enable static-libs static)
 }
 
 src_install() {
-	#Parallel install issuse fixed with parallel-install.patch.
-	#Submitted upstream on 12-13-2010.
-	emake DESTDIR="${D}" install || die
-	dodoc ANNOUNCE AUTHORS ChangeLog NEWS README THANKS USERS || die
+	default
+	find "${ED}" -name '*.la' -exec rm -f {} +
 }






             reply	other threads:[~2012-01-11 11:03 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-11 11:03 Tomas Chvatal (scarabeus) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-08-08 15:01 [gentoo-commits] gentoo-x86 commit in dev-libs/pth: ChangeLog pth-2.0.7-r3.ebuild Raul Porcel (armin76)
2012-05-09 15:21 Alexis Ballier (aballier)
2011-05-21 19:57 Kacper Kowalik (xarthisius)
2011-05-21 17:39 Raul Porcel (armin76)
2011-05-13 15:35 Jeroen Roovers (jer)
2011-05-11 18:21 Markos Chandras (hwoarang)
2011-04-09 13:49 Raul Porcel (armin76)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120111110318.2EA802004B@flycatcher.gentoo.org \
    --to=scarabeus@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox