public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/hal-flash/, media-libs/hal-flash/files/
@ 2016-08-13 19:37 James Le Cuirot
  0 siblings, 0 replies; only message in thread
From: James Le Cuirot @ 2016-08-13 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     2edf7c8d07255dc54c3b0ef1600776eaf4253e92
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 13 19:36:31 2016 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 13 19:37:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edf7c8d

media-libs/hal-flash: Conversion to multilib, dependency fixes

The configure script is now included in the tarball. The patch to fix
building outside of the source tree has been submitted upstream.

Package-Manager: portage-2.3.0

 ...01-Make-build-work-outside-of-source-tree.patch | 61 ++++++++++++++++++++++
 media-libs/hal-flash/hal-flash-0.3.3-r1.ebuild     | 34 ++++++++++++
 2 files changed, 95 insertions(+)

diff --git a/media-libs/hal-flash/files/0001-Make-build-work-outside-of-source-tree.patch b/media-libs/hal-flash/files/0001-Make-build-work-outside-of-source-tree.patch
new file mode 100644
index 0000000..5896dc1
--- /dev/null
+++ b/media-libs/hal-flash/files/0001-Make-build-work-outside-of-source-tree.patch
@@ -0,0 +1,61 @@
+From 82d4389c20f2b83dae49e15513834128f08d0264 Mon Sep 17 00:00:00 2001
+From: James Le Cuirot <chewi@gentoo.org>
+Date: Sat, 13 Aug 2016 15:35:38 +0100
+Subject: [PATCH] Make build work outside of source tree
+
+---
+ test/Makefile.am | 4 ++--
+ test/Makefile.in | 6 +++---
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/test/Makefile.am b/test/Makefile.am
+index 83623d9..261197e 100644
+--- a/test/Makefile.am
++++ b/test/Makefile.am
+@@ -1,5 +1,5 @@
+ AM_CPPFLAGS = @DBUS_CFLAGS@
+-AM_CFLAGS = -std=gnu99 -I../src
++AM_CFLAGS = -std=gnu99 -I$(top_srcdir)/src
+ AM_LDFLAGS = @DBUS_LIBS@
+ LTVALGRIND = $(top_srcdir)/libtool --execute $(VALGRIND)
+ 
+@@ -8,7 +8,7 @@ TESTS_ENVIRONMENT = FLASH="$(LTVALGRIND) flash"
+ 
+ noinst_PROGRAMS = flash
+ flash_SOURCES = flash.c
+-flash_LDADD = ../src/libhal.la
++flash_LDADD = $(top_builddir)/src/libhal.la
+ flash_LDFLAGS = -static
+ 
+ clean-local :
+diff --git a/test/Makefile.in b/test/Makefile.in
+index cfd6c17..1417a9c 100644
+--- a/test/Makefile.in
++++ b/test/Makefile.in
+@@ -97,7 +97,7 @@ CONFIG_CLEAN_VPATH_FILES =
+ PROGRAMS = $(noinst_PROGRAMS)
+ am_flash_OBJECTS = flash.$(OBJEXT)
+ flash_OBJECTS = $(am_flash_OBJECTS)
+-flash_DEPENDENCIES = ../src/libhal.la
++flash_DEPENDENCIES = $(top_builddir)/src/libhal.la
+ AM_V_lt = $(am__v_lt_@AM_V@)
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+ am__v_lt_0 = --silent
+@@ -495,12 +495,12 @@ top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ AM_CPPFLAGS = @DBUS_CFLAGS@
+-AM_CFLAGS = -std=gnu99 -I../src
++AM_CFLAGS = -std=gnu99 -I$(top_srcdir)/src
+ AM_LDFLAGS = @DBUS_LIBS@
+ LTVALGRIND = $(top_srcdir)/libtool --execute $(VALGRIND)
+ TESTS_ENVIRONMENT = FLASH="$(LTVALGRIND) flash"
+ flash_SOURCES = flash.c
+-flash_LDADD = ../src/libhal.la
++flash_LDADD = $(top_builddir)/src/libhal.la
+ flash_LDFLAGS = -static
+ all: all-am
+ 
+-- 
+2.8.2
+

diff --git a/media-libs/hal-flash/hal-flash-0.3.3-r1.ebuild b/media-libs/hal-flash/hal-flash-0.3.3-r1.ebuild
new file mode 100644
index 0000000..ae2499b
--- /dev/null
+++ b/media-libs/hal-flash/hal-flash-0.3.3-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils multilib-minimal
+
+DESCRIPTION="libhal stub forwarding to UDisks for Adobe Flash to play DRM content"
+HOMEPAGE="https://github.com/cshorler/hal-flash http://build.opensuse.org/package/show/devel:openSUSE:Factory/hal-flash"
+SRC_URI="http://github.com/cshorler/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+COMMON_DEPEND="dev-libs/glib:2=[${MULTILIB_USEDEP},dbus]
+	sys-apps/dbus[${MULTILIB_USEDEP}]
+	!sys-apps/hal"
+
+RDEPEND="${COMMON_DEPEND}
+	sys-fs/udisks"
+
+DEPEND="${COMMON_DEPEND}
+	virtual/pkgconfig"
+
+ECONF_SOURCE="${S}"
+DOCS="FAQ.txt README"
+PATCHES=( "${FILESDIR}"/0001-Make-build-work-outside-of-source-tree.patch )
+
+src_install() {
+	multilib-minimal_src_install
+	prune_libtool_files
+}


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

only message in thread, other threads:[~2016-08-13 19:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-13 19:37 [gentoo-commits] repo/gentoo:master commit in: media-libs/hal-flash/, media-libs/hal-flash/files/ James Le Cuirot

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