Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
Date: Fri, 03 Jul 2020 00:07:51
Message-Id: 1593734248.aff523bb17402af832c78b5e5c824f9b08beb33f.kentnl@gentoo
1 commit: aff523bb17402af832c78b5e5c824f9b08beb33f
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 23:35:39 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 23:57:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff523bb
7
8 dev-perl/Audio-FLAC-Header: -r bump for CFLAGS love
9
10 - Ensure CFLAGS are passed to make/compiler
11
12 Package-Manager: Portage-2.3.100, Repoman-2.3.22
13 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
14
15 .../Audio-FLAC-Header-2.400.0-r3.ebuild | 31 ++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r3.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r3.ebuild
19 new file mode 100644
20 index 00000000000..0aebdff020a
21 --- /dev/null
22 +++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r3.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DIST_AUTHOR=DANIEL
30 +DIST_VERSION=2.4
31 +inherit perl-module
32 +
33 +DESCRIPTION="Access to FLAC audio metadata"
34 +
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
37 +
38 +RDEPEND="media-libs/flac"
39 +DEPEND="${RDEPEND}"
40 +BDEPEND="${RDEPEND}"
41 +
42 +PATCHES=(
43 + "${FILESDIR}/${PN}-2.4-no-dot-inc.patch"
44 +)
45 +PERL_RM_FILES=(
46 + "t/pod.t"
47 + "t/pod-coverage.t"
48 +)
49 +src_compile() {
50 + mymake=(
51 + "OPTIMIZE=${CFLAGS}"
52 + )
53 + perl-module_src_compile
54 +}