diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-04-25 14:49:55 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-04-25 14:57:55 +0200 |
commit | 4e5065dc2ee64905184879fd167c5e8b2eaf18f9 (patch) | |
tree | a2fee7687fa2bf7f55d85cf340f2e82a766b669b /media-libs/libv4l/libv4l-1.12.3.ebuild | |
parent | kde-apps/konsole: backport patch from upstream solving --new-tab regression (diff) | |
download | gentoo-4e5065dc2ee64905184879fd167c5e8b2eaf18f9.tar.gz gentoo-4e5065dc2ee64905184879fd167c5e8b2eaf18f9.tar.bz2 gentoo-4e5065dc2ee64905184879fd167c5e8b2eaf18f9.zip |
media-libs/libv4l: Bump to 1.12.3
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-libs/libv4l/libv4l-1.12.3.ebuild')
-rw-r--r-- | media-libs/libv4l/libv4l-1.12.3.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/media-libs/libv4l/libv4l-1.12.3.ebuild b/media-libs/libv4l/libv4l-1.12.3.ebuild new file mode 100644 index 000000000000..e643f163eb6d --- /dev/null +++ b/media-libs/libv4l/libv4l-1.12.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit eutils linux-info multilib-minimal + +MY_P="v4l-utils-${PV}" + +DESCRIPTION="Separate libraries ebuild from upstream v4l-utils package" +HOMEPAGE="https://git.linuxtv.org/v4l-utils.git" +SRC_URI="https://linuxtv.org/downloads/v4l-utils/${MY_P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0/0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="jpeg" + +# The libraries only link to -ljpeg, therefore multilib depend only for virtual/jpeg. +RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] ) + virtual/udev + !media-tv/v4l2-ctl + !<media-tv/ivtv-utils-1.4.0-r2" +DEPEND="${RDEPEND} + sys-devel/gettext + virtual/os-headers + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + CONFIG_CHECK="~SHMEM" + linux-info_pkg_setup +} + +multilib_src_configure() { + # Hard disable the flags that apply only to the utils. + ECONF_SOURCE=${S} \ + econf \ + --disable-static \ + --disable-qv4l2 \ + --disable-v4l-utils \ + $(use_with jpeg) +} + +multilib_src_compile() { + emake -C lib +} + +multilib_src_install() { + emake -j1 -C lib DESTDIR="${D}" install +} + +multilib_src_install_all() { + dodoc ChangeLog README.lib* TODO + prune_libtool_files --all +} |