public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: ChangeLog libvpx-1.0.0-r1.ebuild
@ 2012-05-06 12:42 Thomas Sachau (tommy)
  0 siblings, 0 replies; only message in thread
From: Thomas Sachau (tommy) @ 2012-05-06 12:42 UTC (permalink / raw
  To: gentoo-commits

tommy       12/05/06 12:42:37

  Modified:             ChangeLog
  Added:                libvpx-1.0.0-r1.ebuild
  Log:
  Add explicit targets for amd64 and x86 target platforms to allow cross-compilation, build system seems to ignore user CFLAGS/LDFLAGS, bug 325701
  
  (Portage version: 2.2.0_alpha101-r2/cvs/Linux x86_64)

Revision  Changes    Path
1.49                 media-libs/libvpx/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	31 Mar 2012 14:21:57 -0000	1.48
+++ ChangeLog	6 May 2012 12:42:37 -0000	1.49
@@ -1,6 +1,14 @@
 # ChangeLog for media-libs/libvpx
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.48 2012/03/31 14:21:57 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.49 2012/05/06 12:42:37 tommy Exp $
+
+*libvpx-1.0.0-r1 (06 May 2012)
+
+  06 May 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
+  +libvpx-1.0.0-r1.ebuild:
+  Add explicit targets for amd64 and x86 target platforms to allow
+  cross-compilation, build system seems to ignore user CFLAGS/LDFLAGS, bug
+  325701
 
   31 Mar 2012; Tobias Klausmann <klausman@gentoo.org> libvpx-1.0.0.ebuild:
   Stable on alpha, bug #405955



1.1                  media-libs/libvpx/libvpx-1.0.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-1.0.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: libvpx-1.0.0-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.0.0-r1.ebuild,v 1.1 2012/05/06 12:42:37 tommy Exp $

EAPI=4
inherit multilib toolchain-funcs eutils

if [[ ${PV} == *9999* ]]; then
	inherit git-2
	EGIT_REPO_URI="http://git.chromium.org/webm/${PN}.git"
	KEYWORDS=""
elif [[ ${PV} == *pre* ]]; then
	SRC_URI="mirror://gentoo/${P}.tar.bz2"
	KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
else
	SRC_URI="http://webm.googlecode.com/files/${PN}-v${PV}.tar.bz2"
	KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
	S="${WORKDIR}/${PN}-v${PV}"
fi

DESCRIPTION="WebM VP8 Codec SDK"
HOMEPAGE="http://www.webmproject.org"

LICENSE="BSD"
SLOT="0"
IUSE="altivec debug doc mmx postproc sse sse2 sse3 ssse3 sse4_1 static-libs +threads"

RDEPEND=""
DEPEND="amd64? ( dev-lang/yasm )
	x86? ( dev-lang/yasm )
	x86-fbsd? ( dev-lang/yasm )
	doc? (
		app-doc/doxygen
		dev-lang/php
	)
"

REQUIRED_USE="
	sse2? ( mmx )
	"
src_prepare() {
	epatch "${FILESDIR}"/${P}-support-arm.patch
}
src_configure() {
	#let the build system decide which AS to use (it honours $AS but
	#then feeds it with yasm flags without checking...) bug 345161
	unset AS

	#explicitly tell the build system about the target arch, since
	#it seems to ignore CFLAGS/LDFLAGS
	#bug 325701
	local myarch="$(tc-arch)" myconf=""
	if [[ $myarch = amd64 ]] ; then
		myconf+=" --target=x86_64-linux-gcc"
	elif [[ $myarch = x86 ]] ; then
		myconf+=" --target=x86-linux-gcc"
	fi

	# http://bugs.gentoo.org/show_bug.cgi?id=384585
	addpredict /usr/share/snmp/mibs/.index

	# http://bugs.gentoo.org/379659 http://gerrit.chromium.org/gerrit/#change,18142
	export LC_ALL=C

	tc-export CC
	./configure \
		--prefix="${EPREFIX}"/usr \
		--libdir="${EPREFIX}"/usr/$(get_libdir) \
		--enable-pic \
		--enable-vp8 \
		--enable-shared \
		$(use_enable altivec) \
		$(use_enable debug debug-libs) \
		$(use_enable debug) \
		$(use_enable doc install-docs) \
		$(use_enable mmx) \
		$(use_enable postproc) \
		$(use_enable sse) \
		$(use_enable sse2) \
		$(use_enable sse3) \
		$(use_enable sse4_1) \
		$(use_enable ssse3) \
		$(use_enable static-libs static ) \
		$(use_enable threads multithread) \
		${myconf} \
		|| die
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc AUTHORS CHANGELOG README
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-05-06 12:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-06 12:42 [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: ChangeLog libvpx-1.0.0-r1.ebuild Thomas Sachau (tommy)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox