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 media-libs/jbigkit: jbigkit-2.0-r1.ebuild ChangeLog
Date: Mon, 12 Mar 2012 19:48:08 +0000 (UTC)	[thread overview]
Message-ID: <20120312194808.4AE782004B@flycatcher.gentoo.org> (raw)

scarabeus    12/03/12 19:48:08

  Modified:             jbigkit-2.0-r1.ebuild ChangeLog
  Log:
  Make ssuominen happy by introducing patch and add 5 more lines to ebuild to not spent 2 seconds on AR command.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 media-libs/jbigkit/jbigkit-2.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jbigkit/jbigkit-2.0-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jbigkit/jbigkit-2.0-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jbigkit/jbigkit-2.0-r1.ebuild?r1=1.12&r2=1.13

Index: jbigkit-2.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/jbigkit/jbigkit-2.0-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- jbigkit-2.0-r1.ebuild	12 Mar 2012 19:15:37 -0000	1.12
+++ jbigkit-2.0-r1.ebuild	12 Mar 2012 19:48:08 -0000	1.13
@@ -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/media-libs/jbigkit/jbigkit-2.0-r1.ebuild,v 1.12 2012/03/12 19:15:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/jbigkit/jbigkit-2.0-r1.ebuild,v 1.13 2012/03/12 19:48:08 scarabeus Exp $
 
 EAPI=4
 
@@ -13,17 +13,22 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
+IUSE="static-libs"
 
 S=${WORKDIR}/${PN}
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-r1-build.patch
+	epatch \
+		"${FILESDIR}"/${P}-r1-build.patch \
+		"${FILESDIR}"/${P}-static-libs.patch
 }
 
 src_compile() {
 	tc-export AR CC RANLIB
 	emake LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+	if use static-libs; then
+		cd libjbig && make static
+	fi
 }
 
 src_test() {
@@ -37,7 +42,7 @@
 	insinto /usr/include
 	doins libjbig/*.h
 	dolib libjbig/libjbig{,85}$(get_libname)
-	dolib libjbig/libjbig{,85}.a
+	use static-libs && dolib libjbig/libjbig{,85}.a
 
 	dodoc ANNOUNCE CHANGES TODO libjbig/*.txt
 }



1.53                 media-libs/jbigkit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jbigkit/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jbigkit/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jbigkit/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/jbigkit/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	12 Mar 2012 19:15:37 -0000	1.52
+++ ChangeLog	12 Mar 2012 19:48:08 -0000	1.53
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/jbigkit
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/jbigkit/ChangeLog,v 1.52 2012/03/12 19:15:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/jbigkit/ChangeLog,v 1.53 2012/03/12 19:48:08 scarabeus Exp $
+
+  12 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
+  +files/jbigkit-2.0-static-libs.patch, jbigkit-2.0-r1.ebuild:
+  Make ssuominen happy by introducing patch and add 5 more lines to ebuild to
+  not spent 2 seconds on AR command.
 
   12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> jbigkit-2.0-r1.ebuild:
   If we build static libraries, we should also install them.






             reply	other threads:[~2012-03-12 19:48 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-12 19:48 Tomas Chvatal (scarabeus) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-04-26 20:30 [gentoo-commits] gentoo-x86 commit in media-libs/jbigkit: jbigkit-2.0-r1.ebuild ChangeLog Alexis Ballier (aballier)
2012-03-12 19:15 Samuli Suominen (ssuominen)
2012-03-12 17:57 Tomas Chvatal (scarabeus)
2010-09-05 13:16 Raul Porcel (armin76)
2010-07-25 14:13 Tobias Klausmann (klausman)
2010-07-21 19:22 Markus Meier (maekke)
2010-07-14 15:30 Jeroen Roovers (jer)
2010-07-04  9:47 Samuli Suominen (ssuominen)
2010-06-26 15:19 Gysbert Wassenaar (nixnut)
2010-06-24 21:00 Pacho Ramos (pacho)
2010-06-13 18:00 PaweA Hajdan (phajdan.jr)
2010-05-31  4:48 Steve Arnold (nerdboy)
2010-03-15 19:55 Fabian Groffen (grobian)

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=20120312194808.4AE782004B@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