commit: f789eb494b057136d9dfc8cb2b6f9103ca56f470 Author: Felix Janda <felix.janda <AT> posteo <DOT> de> AuthorDate: Sun Jul 10 19:39:49 2016 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Fri Jul 15 05:38:05 2016 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=f789eb49
media-libs/libdvbpsi: In tree version works Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=581084 media-libs/libdvbpsi/Manifest | 4 -- .../libdvbpsi/files/libdvbpsi-1.2.0-musl.patch | 10 ----- media-libs/libdvbpsi/libdvbpsi-1.2.0-r99.ebuild | 47 ---------------------- media-libs/libdvbpsi/metadata.xml | 5 --- 4 files changed, 66 deletions(-) diff --git a/media-libs/libdvbpsi/Manifest b/media-libs/libdvbpsi/Manifest deleted file mode 100644 index 47b6041..0000000 --- a/media-libs/libdvbpsi/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX libdvbpsi-1.2.0-musl.patch 239 SHA256 4cf3301597bf520ef62750275f29273df553516230d73b0150d08c706fbcb727 SHA512 c81eecebd0bca9320bd2cf906e78d828b5463c4cc04f93e3ce1e20b9e31c33b51eb38961865495ff044983ca648d83d19041caf13d0abd8fc39192cf8f118de8 WHIRLPOOL fc103b1466b7288c8e83d38789765e0d29805772d9a0254a1fbed5641553bc83515a5270b10bfe171764f8abf0b865c9076fa4af9a1f77d4a502afd90926b5eb -DIST libdvbpsi-1.2.0.tar.bz2 461372 SHA256 36d9b233306e48b58999e87864253b564e20932ed46a485e44ef7058f1f927e8 SHA512 951db13f5645d4d6a160719fc6ac97fd31a32d5d17cb8e26db94702e65b6fac3d4e7a99c3c417e09fe5ce33f3b0c0ef86206c77b36816dcd8a3bd5b0bb4a9684 WHIRLPOOL 103c602d65177a973c073e09b62765ac28ad30eddc1ad9c3a1dc70d6c93e41599f97c2c0fa6c99f7309e51b7d2aee9d2bb5e3cdcfb2b44929105cfc2cc4f66b3 -EBUILD libdvbpsi-1.2.0-r99.ebuild 955 SHA256 0d18fa8213751d21f6e904049b514d686852e7021fa34c5e6ef604fa961fdd4c SHA512 a6082248d6d0ecc65a5d17b2e877323982b5bf391be1592e46b764391c8a56cb4ebd0d86f01efbed13f8583a510284525e566017c4be1418a8ffa01a004027a2 WHIRLPOOL 140b518bd8b04f5b6645cae236dec145320818a7a5070ec68e60115bfd088562590259b17b07d58f522a0f9fa38114343fdf019d54eb71054e491a5247e538d5 -MISC metadata.xml 212 SHA256 1de5b77b4ff39f75e4d7c47828c9010d16af3e949ccf9e06e936ba0fa082eeb0 SHA512 ad3eb85555c559c56e2fc097ed106671a78bb16ea63253de1786772a1b914833c2af673da087899e1b06f5db150c283cccb81fe8591c257f91913f2ae22a039b WHIRLPOOL 4b7d234f23500c9490aad41bad148d212555278a8454d0d151d3909c44188fa640a752f237a0f7cd5560892091e736581b4ce6a1fe472e446434bc75c46b6580 diff --git a/media-libs/libdvbpsi/files/libdvbpsi-1.2.0-musl.patch b/media-libs/libdvbpsi/files/libdvbpsi-1.2.0-musl.patch deleted file mode 100644 index ed7372b..0000000 --- a/media-libs/libdvbpsi/files/libdvbpsi-1.2.0-musl.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/libdvbpsi-1.2.0/src/descriptor.c -+++ b/libdvbpsi-1.2.0/src/descriptor.c -@@ -29,6 +29,7 @@ - #include <stdlib.h> - #include <stdbool.h> - #include <string.h> -+#include <sys/types.h> - - #if defined(HAVE_INTTYPES_H) - #include <inttypes.h> diff --git a/media-libs/libdvbpsi/libdvbpsi-1.2.0-r99.ebuild b/media-libs/libdvbpsi/libdvbpsi-1.2.0-r99.ebuild deleted file mode 100644 index 96f6fa7..0000000 --- a/media-libs/libdvbpsi/libdvbpsi-1.2.0-r99.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils - -DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation" -HOMEPAGE="http://www.videolan.org/libdvbpsi" -SRC_URI="http://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm ~mips ppc x86" -IUSE="doc static-libs" - -RDEPEND="" -DEPEND=" - doc? ( - app-doc/doxygen - >=media-gfx/graphviz-2.26 - )" # Require recent enough graphviz wrt #181147 - -DOCS=( AUTHORS ChangeLog NEWS README ) - -src_prepare() { - epatch ${FILESDIR}/${P}-musl.patch - sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -e '/CFLAGS/s:-Werror::' -i configure || die -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --enable-release -} - -src_compile() { - emake - use doc && emake doc -} - -src_install() { - default - use doc && dohtml doc/doxygen/html/* - rm -f "${ED}"usr/lib*/${PN}.la -} diff --git a/media-libs/libdvbpsi/metadata.xml b/media-libs/libdvbpsi/metadata.xml deleted file mode 100644 index d76dee6..0000000 --- a/media-libs/libdvbpsi/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="person"><email>[email protected]</email></maintainer> -</pkgmetadata>
