summaryrefslogtreecommitdiff
path: root/media-libs/libirman
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
commit7bc9c63c9da678a7e6fceb095d56c634afd22c56 (patch)
tree4a67d50a439e9af63947e5f8b6ba3719af98b6c9 /media-libs/libirman
parentb284a3168fa91a038925d2ecf5e4791011ea5e7d (diff)
gentoo resync : 15.12.2019
Diffstat (limited to 'media-libs/libirman')
-rw-r--r--media-libs/libirman/Manifest2
-rw-r--r--media-libs/libirman/libirman-0.4.5.ebuild29
2 files changed, 18 insertions, 13 deletions
diff --git a/media-libs/libirman/Manifest b/media-libs/libirman/Manifest
index 480fe301f6b1..bbe4d1743b8b 100644
--- a/media-libs/libirman/Manifest
+++ b/media-libs/libirman/Manifest
@@ -1,3 +1,3 @@
DIST libirman-0.4.5.tar.bz2 225330 BLAKE2B a8910631b4985e5ba8a425ea0914005fefb89329b9cb297e78a6c6775d386765aeabc86a92b63eadef17c7428e07213ebafc81d26fcf237f770ddf5aed06bff0 SHA512 5b0a8e1c0699bf1d8b43bbb2320b3abbd1f8d400264efd78d1cfb5ea942ff1d272b150012dfa61f5afc427824282a62755ec1e1189dd3d849a5f62293125ffb3
-EBUILD libirman-0.4.5.ebuild 689 BLAKE2B 467d476f060b13e19bef42a174feafb182b33a8a7f7846bd2f6628951cce32a57b6a90aeeb72a6365091dee6381cfc939b34f2dc4f4efbe9dd2819f8d669ef95 SHA512 8822f44a8d17a8ab02d1bd9ac5e1ecc62ff25ed9d14f49f9b2b2ad8d6c8ced3a2eb25b120deffa4d038da8065fdcaac89019ea15442193732c2976c8e624fc30
+EBUILD libirman-0.4.5.ebuild 676 BLAKE2B 8b457e11919b55c6e90d2576235159867d4a85fc036e028f43dac72ce966e28165bb83e72e7702ab2d7d41267ca025449de1517ad78f1322f1a54279a8b8a37d SHA512 635d68af8f61b6740d704b6a8eaf20a30b25ab3fa2418c0dcfb27fa2f645842abc6a8ddd7e1e7a9f222bc375c0990a25a4e013ce9626fa920a2531467d101e6f
MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/media-libs/libirman/libirman-0.4.5.ebuild b/media-libs/libirman/libirman-0.4.5.ebuild
index 5dddb2d83849..f8f4a774babb 100644
--- a/media-libs/libirman/libirman-0.4.5.ebuild
+++ b/media-libs/libirman/libirman-0.4.5.ebuild
@@ -1,30 +1,35 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils eutils toolchain-funcs
+inherit autotools toolchain-funcs
DESCRIPTION="library for Irman control of Unix software"
HOMEPAGE="http://www.lirc.org/software/snapshots/"
SRC_URI="http://www.lirc.org/software/snapshots/${P}.tar.bz2"
-SLOT="0"
LICENSE="GPL-2 LGPL-2"
+SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="static-libs"
-
-DOCS=( TECHNICAL NEWS README TODO )
src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
tc-export CC LD AR RANLIB
- autotools-utils_src_prepare
+ econf --disable-static
}
src_install() {
- autotools-utils_src_install LIRC_DRIVER_DEVICE="${D}/dev/lirc"
+ export LIRC_DRIVER_DEVICE="${ED}/dev/lirc"
+ default
+ dodoc TECHNICAL
+
+ dobin test_{func,io,name}
- dobin ${AUTOTOOLS_BUILD_DIR}/test_{func,io,name}
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
}