diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-09-28 09:20:20 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-09-28 11:08:24 +0200 |
commit | d16edd623bb5f321e45d33b9cb803fc0874cb9cc (patch) | |
tree | 9f6867f2b801a5eecb0212c9e53e8f22fa52999f /media-gfx/qrencode | |
parent | dev-db/oracle-instantclient: lift fetch restriction (diff) | |
download | gentoo-d16edd623bb5f321e45d33b9cb803fc0874cb9cc.tar.gz gentoo-d16edd623bb5f321e45d33b9cb803fc0874cb9cc.tar.bz2 gentoo-d16edd623bb5f321e45d33b9cb803fc0874cb9cc.zip |
media-gfx/qrencode: Bump to 4.1.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-gfx/qrencode')
-rw-r--r-- | media-gfx/qrencode/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/qrencode/qrencode-4.1.1.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/media-gfx/qrencode/Manifest b/media-gfx/qrencode/Manifest index 81f3a0d3904e..22d6e0cf6062 100644 --- a/media-gfx/qrencode/Manifest +++ b/media-gfx/qrencode/Manifest @@ -1,2 +1,3 @@ DIST qrencode-4.0.2.tar.bz2 430309 BLAKE2B 1f68d2a921ba60df3a6c7381d7886b27a2876f90771d78c12d5d0fed2d6a4edb4d7da5985e2b244406a0cf3434b351fbec8b12c5944c365078ef2b227edb0acd SHA512 2429c7938e32eacbaf327c029c7745ba33259f879661a8b6470cc617c780daf5bd1d5689599151df62e84badd2568eccab6c12f157331e512ab24a3899e0f002 DIST qrencode-4.1.0.tar.bz2 449040 BLAKE2B cff4e950a436e2bb3a73543ce11639861426840db6861eefd3d641dcb14cd6b4be7c2045468a002f7599a89aa71c77f7dfc971dd726ecce0d524f9b792ea6e91 SHA512 50ccc65f748cc1007dccd8d0eee0063b870c3e8a5fe5b8b2a813881151a86748a36844bcfa6ab08c82674b80e9b5bcbfd564ade92562cc49e01cbfa45376b4a9 +DIST qrencode-4.1.1.tar.bz2 461562 BLAKE2B ae3abb4a162518c0204d09c9df7434fb348e24c20e790a261841220b0a7165168137d5acbdbc53e40558724eac2e1e21786f11013f384b545d56a1c9caaff61d SHA512 981b3242c213e1b40ac88711912dd8c27ea11f3437d1a04b6b226499a6e991a8f0b3b10f818bcc104812192a1dac4ce05f16ecd847a50cb03d4859b84bad89b8 diff --git a/media-gfx/qrencode/qrencode-4.1.1.ebuild b/media-gfx/qrencode/qrencode-4.1.1.ebuild new file mode 100644 index 000000000000..0872a1336274 --- /dev/null +++ b/media-gfx/qrencode/qrencode-4.1.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="C library for encoding data in a QR Code symbol" +HOMEPAGE="https://fukuchi.org/works/qrencode/" +SRC_URI="https://fukuchi.org/works/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0/4" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="media-libs/libpng:0=" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + local myconf=( + $(use_with test tests) + # TODO: figure out how to make SDL check fail as the SDL test + # program is not useful + ) + + econf "${myconf[@]}" +} + +src_test() { + cd tests || die + ./test_basic.sh || die +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |