public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mart Raudsepp (leio)" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gst-plugins-base: ChangeLog gst-plugins-base-0.10.35.ebuild
Date: Thu, 30 Jun 2011 13:08:44 +0000 (UTC)	[thread overview]
Message-ID: <20110630130844.DDB4E20054@flycatcher.gentoo.org> (raw)

leio        11/06/30 13:08:44

  Modified:             ChangeLog
  Added:                gst-plugins-base-0.10.35.ebuild
  Log:
  Version bump. Don't let the upstream build system always pass -g (honoring CFLAGS in make.conf about it instead), also removed the debug USE flag, which affected nothing. Adds ARGB64, AYUV64 (16 bits per channel) and r210 (10 bits per channel) format support to some elements. Many other improvements, some new API and bug fixes
  
  (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)

Revision  Changes    Path
1.171                media-libs/gst-plugins-base/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/ChangeLog?r1=1.170&r2=1.171

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	9 Jun 2011 16:01:43 -0000	1.170
+++ ChangeLog	30 Jun 2011 13:08:44 -0000	1.171
@@ -1,6 +1,16 @@
 # ChangeLog for media-libs/gst-plugins-base
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v 1.170 2011/06/09 16:01:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v 1.171 2011/06/30 13:08:44 leio Exp $
+
+*gst-plugins-base-0.10.35 (30 Jun 2011)
+
+  30 Jun 2011; Mart Raudsepp <leio@gentoo.org>
+  +gst-plugins-base-0.10.35.ebuild:
+  Version bump. Don't let the upstream build system always pass -g (honoring
+  CFLAGS in make.conf about it instead), also removed the debug USE flag,
+  which affected nothing. Adds ARGB64, AYUV64 (16 bits per channel) and r210
+  (10 bits per channel) format support to some elements. Many other
+  improvements, some new API and bug fixes
 
   09 Jun 2011; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-0.10.32.ebuild:
   Stable for HPPA (bug #368281).



1.1                  media-libs/gst-plugins-base/gst-plugins-base-0.10.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-0.10.35.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-0.10.35.ebuild?rev=1.1&content-type=text/plain

Index: gst-plugins-base-0.10.35.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-0.10.35.ebuild,v 1.1 2011/06/30 13:08:44 leio Exp $

EAPI=1
GCONF_DEBUG="no"

# order is important, gnome2 after gst-plugins
inherit gst-plugins-base gst-plugins10 gnome2 flag-o-matic eutils
# libtool

DESCRIPTION="Basepack of plugins for gstreamer"
HOMEPAGE="http://gstreamer.sourceforge.net"
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~amd64-linux ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~sh ~sparc ~sparc-solaris ~x64-macos ~x64-solaris ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~x86-linux ~x86-macos ~x86-solaris"
IUSE="+introspection nls +orc"

RDEPEND=">=dev-libs/glib-2.22
	>=media-libs/gstreamer-0.10.34
	dev-libs/libxml2
	app-text/iso-codes
	orc? ( >=dev-lang/orc-0.4.11 )
	!<media-libs/gst-plugins-bad-0.10.10"
DEPEND="${RDEPEND}
	nls? ( >=sys-devel/gettext-0.11.5 )
	dev-util/pkgconfig"
	# Only if running eautoreconf: dev-util/gtk-doc-am

GST_PLUGINS_BUILD=""

DOCS="AUTHORS NEWS README RELEASE"

src_compile() {
	# gst doesnt handle opts well, last tested with 0.10.15
	strip-flags
	replace-flags "-O3" "-O2"

	# Avoid sandbox violation with USE="introspection", bug #356283
	export GST_REGISTRY=${T}/registry.cache.xml

	gst-plugins-base_src_configure \
		$(use_enable introspection) \
		$(use_enable nls) \
		$(use_enable orc) \
		--disable-examples \
		--disable-debug
	emake || die "emake failed."
}

src_install() {
	gnome2_src_install
}






             reply	other threads:[~2011-06-30 13:08 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-30 13:08 Mart Raudsepp (leio) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-09-20  3:41 [gentoo-commits] gentoo-x86 commit in media-libs/gst-plugins-base: ChangeLog gst-plugins-base-0.10.35.ebuild PaweA Hajdan (phajdan.jr)
2011-09-25 20:44 Tony Vroon (chainsaw)
2011-10-03 21:43 Markus Meier (maekke)
2011-10-04 19:00 Jeroen Roovers (jer)
2011-10-04 19:06 Jeroen Roovers (jer)
2011-10-09 15:50 Raul Porcel (armin76)
2011-10-11 19:37 Jeroen Roovers (jer)
2011-10-15 18:12 Kacper Kowalik (xarthisius)
2012-05-12 16:36 Alexis Ballier (aballier)

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=20110630130844.DDB4E20054@flycatcher.gentoo.org \
    --to=leio@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