commit: 6f06af2f3bb3f3c99be403bd492ff62720da084c
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 26 22:20:26 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Jun 26 22:20:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f06af2f
dev-perl/Compress-LZF: -r bump for EAPI7
- EAPI7
- Fix LICENSE
- Ensure passing CFLAGS through to make
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../Compress-LZF/Compress-LZF-3.800.0-r1.ebuild | 23 ++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/dev-perl/Compress-LZF/Compress-LZF-3.800.0-r1.ebuild
b/dev-perl/Compress-LZF/Compress-LZF-3.800.0-r1.ebuild
new file mode 100644
index 00000000000..4c3508ba9f9
--- /dev/null
+++ b/dev-perl/Compress-LZF/Compress-LZF-3.800.0-r1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=MLEHMANN
+DIST_VERSION=3.8
+inherit perl-module
+
+DESCRIPTION="extremely light-weight Lempel-Ziv-Free compression"
+# lzfP.h for BSD/GPL2+
+LICENSE="|| ( Artistic GPL-1+ ) || ( BSD-2 GPL-2+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="virtual/perl-ExtUtils-MakeMaker"
+
+src_compile() {
+ mymake=(
+ "OPTIMIZE=${CFLAGS}"
+ )
+ perl-module_src_compile
+}