diff options
author | Sam James (sam_c) <sam@cmpct.info> | 2020-05-22 05:42:15 +0000 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-06-17 03:07:46 +0200 |
commit | d0d63e5bece16d16d7ce74e625f01a9f3bc914ff (patch) | |
tree | a380a10ddd7cfbb36ad9c6033c3d328aa92d0aee /media-gfx/exif | |
parent | media-libs/libexif: Security bump to 0.6.22 (diff) | |
download | gentoo-d0d63e5bece16d16d7ce74e625f01a9f3bc914ff.tar.gz gentoo-d0d63e5bece16d16d7ce74e625f01a9f3bc914ff.tar.bz2 gentoo-d0d63e5bece16d16d7ce74e625f01a9f3bc914ff.zip |
media-gfx/exif: Bump to 0.6.22
Bumping this "while there" for media-libs/libexif.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam@cmpct.info>
Closes: https://github.com/gentoo/gentoo/pull/15909
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'media-gfx/exif')
-rw-r--r-- | media-gfx/exif/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/exif/exif-0.6.22.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/media-gfx/exif/Manifest b/media-gfx/exif/Manifest index 289337dff230..7fdaf2ae5a37 100644 --- a/media-gfx/exif/Manifest +++ b/media-gfx/exif/Manifest @@ -1 +1,2 @@ DIST exif-0.6.21.tar.bz2 387531 BLAKE2B 494d4910af2e8f740aeebdeeaf8dec5ae638d3e78339c55d5acc38879ab4837164d2ef407bd07a2e36a00df15d53b132bb027e2e97e79c229c589819af3b7f7b SHA512 73b5b7df08462a6a084a8fb973c39197f5d64ed753a97cb2f94a4acf815fdf0313214c2c8e44a46a24a1f6304fdaa68a579b4a2e246cc095f6e9588e93368cdc +DIST exif-0.6.22.tar.gz 569665 BLAKE2B 556927fca99416ff174c0c4403337f2f8b85cb14472d920a48a9598d8b7e3be6b800b0b37a764cd89fb45b62376a05ef1f0ae6b260a076f0949aadf8a441a2eb SHA512 b194bacb28ff2b910014edce732f97a875852abd486ce62bcf9274eb0ed668a0ee9c954cf60455191969aacb48d3d4d3172958a183b29f050c0bf8d55de14e7d diff --git a/media-gfx/exif/exif-0.6.22.ebuild b/media-gfx/exif/exif-0.6.22.ebuild new file mode 100644 index 000000000000..01a292a9d047 --- /dev/null +++ b/media-gfx/exif/exif-0.6.22.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Small CLI util to show EXIF infos hidden in JPEG files" +HOMEPAGE="https://libexif.github.io/ https://github.com/libexif/exif" +SRC_URI="https://github.com/lib${PN}/${PN}/releases/download/${PN}-${PV//./_}-release/${P}.tar.gz" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="nls" + +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" +DEPEND=" + dev-libs/popt + >=media-libs/libexif-${PV} +" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable nls) +} |