commit:     b540a10f19893a12168b544e4bff4936cb259e56
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 14 11:00:41 2017 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Jul 14 11:00:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b540a10f

net-libs/opal: Drop hardmasked versions

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-libs/opal/Manifest                             |   2 -
 .../files/opal-3.12.4-avoid_cflags_mixup.patch     | 132 ------------
 .../files/opal-3.12.4-java-ruby-swig-fix.patch     |  28 ---
 net-libs/opal/metadata.xml                         |   1 -
 net-libs/opal/opal-3.12.4-r1.ebuild                | 233 ---------------------
 5 files changed, 396 deletions(-)

diff --git a/net-libs/opal/Manifest b/net-libs/opal/Manifest
index 3ac3ffff331..0486da0f5ad 100644
--- a/net-libs/opal/Manifest
+++ b/net-libs/opal/Manifest
@@ -1,4 +1,2 @@
 DIST opal-3.10.11-htmldoc.tar.bz2 2944338 SHA256 
66708e69f1bea6a1160f3aa904643f49b2e2679822c1446d5aeb1f29dd973cea SHA512 
6075487344d4cfa5c2e2219376e3eccd98028475eac6f89d20d24d611a8806a27eb354ce8e77e16c620c8cb3d398b9502082f3fe8f67763d3f67feea835819b5
 WHIRLPOOL 
a23aafd7da85d00db2c285641ab75f1c0850c6eaaaa649c8278891282d86312d062be7ac4d89ec3955eac11eb91c018c7b05a89282b35f1b129af90f36e34033
 DIST opal-3.10.11.tar.bz2 8590616 SHA256 
f38e7969e88a28dd9a10a6051315aceecde79d0bbd1a35676868dc5787aed706 SHA512 
970745375e7ebb29178ce9d0bc29254e69dd952e5f754038979a8613489a26f0fb68d63ec2709ffa1964e50fe9cfde874489f683a451d83e7a075d62d9228fa1
 WHIRLPOOL 
b4387f8a664c2763f1e62dc16772ce869dee6d5aaac271ef0013d1e7f207d19c5e3578c26215ce246c278bc4de9aa538dabae8a3b6a794b250a5f30f9be7d206
-DIST opal-3.12.4-htmldoc.tar.bz2 3094840 SHA256 
858cd14bf2de54a6aeb5397d8627a7e50ea6b63e18b0f47c057386d079b07fbc SHA512 
c80ed1b0df9fffbfc07ea590a0e80afd9b985ed2971deb640e92776723f12e6a544eaf3441261d34df0ad0bbca6b03a983f7a7b0b92fbf333f1a8688d2ca735d
 WHIRLPOOL 
e2d5ba8e4429c60003dd995add2aea12b22a2f23da8dd3ed0025fa451752412805d4f25160809542dd8d61684edca35d73174037650b3546cedc97495faa29b9
-DIST opal-3.12.4.tar.bz2 9694052 SHA256 
2786bc27f83c59d74165e318656ada230164ebcba61f0d8cb1b55bfcd13b2d82 SHA512 
83c44dbd077e45a5bf63963b8a5348c24c65e9ab8b25afccacbf4632aa55fce26b6133c8c40f06da90fe73865165509c67b19286e868eada0270adefd3e38733
 WHIRLPOOL 
3063d5b9d64e690898d60e5e26f3936b28b954ce7fb2a2dc2f78cfde05932efc63ec7874dd73c87561d1a3c3f564837855559ca031121e7d9fe18c25508042d7

diff --git a/net-libs/opal/files/opal-3.12.4-avoid_cflags_mixup.patch 
b/net-libs/opal/files/opal-3.12.4-avoid_cflags_mixup.patch
deleted file mode 100644
index 24686110a42..00000000000
--- a/net-libs/opal/files/opal-3.12.4-avoid_cflags_mixup.patch
+++ /dev/null
@@ -1,132 +0,0 @@
-diff -urN opal-3.12.4.old/plugins/plugin-inc.mak.in 
opal-3.12.4/plugins/plugin-inc.mak.in
---- opal-3.12.4.old/plugins/plugin-inc.mak.in  2013-06-22 21:14:01.528580888 
+0200
-+++ opal-3.12.4/plugins/plugin-inc.mak.in      2013-06-22 21:14:42.652579425 
+0200
-@@ -32,11 +32,13 @@
- CXX           := @CXX@
- INSTALL       := @INSTALL@
- CFLAGS        += @CFLAGS@ -I@prefix@/include -I$(PLUGINDIR)/../include 
-I$(PLUGINDIR)
-+CXXFLAGS      += @CXXFLAGS@ -I@prefix@/include -I$(PLUGINDIR)/../include 
-I$(PLUGINDIR)
- LDFLAGS       += @LDFLAGS@ @LDSO@
- PLUGINEXT     :=@PLUGINEXT@
- 
- ifneq ($(DEBUG),)
- CFLAGS        += -g
-+CXXFLAGS      += -g
- endif
- 
- OBJDIR := $(PLUGINDIR)/../lib_@target@/plugins/$(BASENAME)
-@@ -65,11 +67,11 @@
- 
- $(OBJDIR)/%.o : %.cxx
-       @mkdir -p $(OBJDIR) >/dev/null 2>&1
--      $(Q_CC)$(CXX) -c $(CXXFLAGS) $(CFLAGS) -o $@ $<
-+      $(Q_CC)$(CXX) -c $(CXXFLAGS) -o $@ $<
- 
- $(OBJDIR)/%.o : %.cpp
-       @mkdir -p $(OBJDIR) >/dev/null 2>&1
--      $(Q_CC)$(CXX) -c $(CXXFLAGS) $(CFLAGS) -o $@ $<
-+      $(Q_CC)$(CXX) -c $(CXXFLAGS) -o $@ $<
- 
- OBJECTS       = $(addprefix $(OBJDIR)/,$(patsubst %.cxx,%.o,$(patsubst 
%.cpp,%.o,$(patsubst %.c,%.o,$(notdir $(SRCS))))))
- 
-diff -urN opal-3.12.4.old/plugins/video/H.261-vic/Makefile.in 
opal-3.12.4/plugins/video/H.261-vic/Makefile.in
---- opal-3.12.4.old/plugins/video/H.261-vic/Makefile.in        2013-06-22 
21:14:01.503580889 +0200
-+++ opal-3.12.4/plugins/video/H.261-vic/Makefile.in    2013-06-22 
21:14:42.652579425 +0200
-@@ -39,7 +39,7 @@
-              $(SRCDIR)/bv.c \
- 
- 
--CFLAGS += -I$(COMMONDIR)
-+CXXFLAGS += -I$(COMMONDIR)
- 
- INSTALL_DIR := @VC_PLUGIN_DIR@
- PLUGINDIR   := @PLUGINDIR@
-diff -urN opal-3.12.4.old/plugins/video/H.263-1998/Makefile.in 
opal-3.12.4/plugins/video/H.263-1998/Makefile.in
---- opal-3.12.4.old/plugins/video/H.263-1998/Makefile.in       2013-06-22 
21:14:01.499580889 +0200
-+++ opal-3.12.4/plugins/video/H.263-1998/Makefile.in   2013-06-22 
21:16:18.196576026 +0200
-@@ -34,12 +34,12 @@
-              $(COMMONDIR)/ffmpeg.cxx \
-              $(COMMONDIR)/dyna.cxx
- 
--CFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR)
-+CXXFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR)
- LIBS   += @LIBAVCODEC_LIBS@ @LIBAVUTIL_LIBS@
- 
- HAVE_LIBAVCODEC_RTP_MODE=@HAVE_LIBAVCODEC_RTP_MODE@
- ifeq ($(HAVE_LIBAVCODEC_RTP_MODE),yes)
--CFLAGS += -DLIBAVCODEC_RTP_MODE=1
-+CXXFLAGS += -DLIBAVCODEC_RTP_MODE=1
- endif
- 
- vpath   %.cxx $(COMMONDIR)
-diff -urN opal-3.12.4.old/plugins/video/H.264/gpl/Makefile.in 
opal-3.12.4/plugins/video/H.264/gpl/Makefile.in
---- opal-3.12.4.old/plugins/video/H.264/gpl/Makefile.in        2013-06-22 
21:14:01.500580889 +0200
-+++ opal-3.12.4/plugins/video/H.264/gpl/Makefile.in    2013-06-22 
21:16:35.515575410 +0200
-@@ -48,7 +48,7 @@
- 
- CC            =@CC@
- CXX           =@CXX@
--CFLAGS  =@X264_CFLAGS@ @LIBAVCODEC_CFLAGS@ -I.. -I$(PLUGINDIR) 
-I$(OPALDIR)/include -DGPL_HELPER_APP -DPLUGINCODEC_TRACING
-+CXXFLAGS  =@X264_CFLAGS@ @LIBAVCODEC_CFLAGS@ -I.. -I$(PLUGINDIR) 
-I$(OPALDIR)/include -DGPL_HELPER_APP -DPLUGINCODEC_TRACING
- LDFLAGS = @X264_LIBS@ @LIBAVCODEC_LIBS@ @LIBAVUTIL_LIBS@ @DL_LIBS@ @LDFLAGS@
- 
- 
-@@ -61,7 +61,7 @@
- 
- $(OBJDIR)/%.o : %.cxx
-       @mkdir -p $(OBJDIR) >/dev/null 2>&1
--      $(Q_CC)$(CXX) $(CFLAGS) -c $< -o $@
-+      $(Q_CC)$(CXX) $(CXXFLAGS) -c $< -o $@
- 
- $(OBJDIR)/%.o : %.c
-       @mkdir -p $(OBJDIR) >/dev/null 2>&1
-diff -urN opal-3.12.4.old/plugins/video/H.264/Makefile.in 
opal-3.12.4/plugins/video/H.264/Makefile.in
---- opal-3.12.4.old/plugins/video/H.264/Makefile.in    2013-06-22 
21:14:01.500580889 +0200
-+++ opal-3.12.4/plugins/video/H.264/Makefile.in        2013-06-22 
21:16:52.874574792 +0200
-@@ -35,12 +35,12 @@
-            $(COMMONDIR)/ffmpeg.cxx \
-            $(COMMONDIR)/dyna.cxx
- 
--CFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR) -DLIB_DIR='"$(libdir)"' 
-DVC_PLUGIN_DIR='"@VC_PLUGIN_DIR@"'
-+CXXFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR) -DLIB_DIR='"$(libdir)"' 
-DVC_PLUGIN_DIR='"@VC_PLUGIN_DIR@"'
- LIBS   += @LIBAVCODEC_LIBS@ @LIBAVUTIL_LIBS@
- 
- IS_H264_LICENSED:=@IS_H264_LICENSED@
- ifeq ($(IS_H264_LICENSED),yes)
--  CFLAGS += @X264_CFLAGS@ -DX264_LICENSED
-+  CXXFLAGS += @X264_CFLAGS@ -DX264_LICENSED
-   LIBS   += @X264_LIBS@
- else
-   SUBDIRS := gpl
-diff -urN opal-3.12.4.old/plugins/video/MPEG4-ffmpeg/Makefile.in 
opal-3.12.4/plugins/video/MPEG4-ffmpeg/Makefile.in
---- opal-3.12.4.old/plugins/video/MPEG4-ffmpeg/Makefile.in     2013-06-22 
21:14:01.499580889 +0200
-+++ opal-3.12.4/plugins/video/MPEG4-ffmpeg/Makefile.in 2013-06-22 
21:15:53.183576916 +0200
-@@ -32,14 +32,14 @@
-              $(COMMONDIR)/ffmpeg.cxx \
-              $(COMMONDIR)/dyna.cxx
- 
--CFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR)
-+CXXFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR)
- LIBS   += @LIBAVCODEC_LIBS@ @LIBAVUTIL_LIBS@
- 
- # Add LIBAVCODEC_SOURCE_DIR to the include path so we can #include 
<libavcodec/...h>
- # Also add libavutil, so ffmpeg headers can #include "log.h".
- LIBAVCODEC_SOURCE_DIR := @LIBAVCODEC_SOURCE_DIR@
- ifneq (,$(LIBAVCODEC_SOURCE_DIR))
--CFLAGS += -I$(LIBAVCODEC_SOURCE_DIR) -I$(LIBAVCODEC_SOURCE_DIR)/libavutil
-+CXXFLAGS += -I$(LIBAVCODEC_SOURCE_DIR) -I$(LIBAVCODEC_SOURCE_DIR)/libavutil
- endif
- 
- vpath   %.cxx $(COMMONDIR)
-diff -urN opal-3.12.4.old/plugins/video/THEORA/Makefile.in 
opal-3.12.4/plugins/video/THEORA/Makefile.in
---- opal-3.12.4.old/plugins/video/THEORA/Makefile.in   2013-06-22 
21:14:01.503580889 +0200
-+++ opal-3.12.4/plugins/video/THEORA/Makefile.in       2013-06-22 
21:14:42.654579425 +0200
-@@ -30,7 +30,7 @@
- SRCDIR    := .
- SRCS      := theora_frame.cxx theora_plugin.cxx
- 
--CFLAGS += @THEORA_CFLAGS@ -I$(COMMONDIR)
-+CXXFLAGS += @THEORA_CFLAGS@ -I$(COMMONDIR)
- LIBS   += @THEORA_LIBS@
- 
- INSTALL_DIR := @VC_PLUGIN_DIR@

diff --git a/net-libs/opal/files/opal-3.12.4-java-ruby-swig-fix.patch 
b/net-libs/opal/files/opal-3.12.4-java-ruby-swig-fix.patch
deleted file mode 100644
index 616468ea577..00000000000
--- a/net-libs/opal/files/opal-3.12.4-java-ruby-swig-fix.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- opal-3.12.4.old/make/toplevel.mak.in       2013-06-22 21:14:01.536580887 
+0200
-+++ opal-3.12.4/make/toplevel.mak.in   2013-06-22 21:21:08.342565703 +0200
-@@ -407,9 +407,9 @@
- ifeq ($(OPAL_JAVA), yes)
- 
- JAVA_SRCDIR      = $(OPAL_SRCDIR)/java
--JAVA_WRAPPER     = $(JAVA_SRCDIR)/java_swig_wrapper.c
-+JAVA_WRAPPER     = $(JAVA_SRCDIR)/java_swig_wrapper.cxx
- 
--VPATH_C         += $(JAVA_SRCDIR)
-+VPATH_CXX       += $(JAVA_SRCDIR)
- SOURCES         += $(JAVA_WRAPPER)
- 
- endif
-@@ -420,10 +420,10 @@
- 
- ifeq ($(OPAL_RUBY), yes)
- 
--RUBY_SRCDIR      = $(OPAL_SRCDIR)/ruby
--RUBY_WRAPPER     = $(JAVA_SRCDIR)/ruby_swig_wrapper.c
-+RUBY_SRCDIR      = $(OPAL_SRCDIR)/Ruby
-+RUBY_WRAPPER     = $(JAVA_SRCDIR)/ruby_swig_wrapper.cxx
- 
--VPATH_C         += $(RUBY_SRCDIR)
-+VPATH_CXX       += $(RUBY_SRCDIR)
- SOURCES         += $(RUBY_WRAPPER)
- 
- endif

diff --git a/net-libs/opal/metadata.xml b/net-libs/opal/metadata.xml
index 7f5f62fa175..1f2a52bbd60 100644
--- a/net-libs/opal/metadata.xml
+++ b/net-libs/opal/metadata.xml
@@ -12,7 +12,6 @@
     <flag name="iax">Enable Inter-Asterisk eXchange protocol</flag>
     <flag name="ivr">Enable Interactive Voice Response</flag>
     <flag name="ilbc">Enable iLBC (RFC 3951) speech codec</flag>
-    <flag name="ixj">Enable xJack cards support</flag>
     <flag name="lid">Enable Line Interface Device</flag>
     <flag name="plugins">Enable plugins support</flag>
     <flag name="sbc">Enable the Bluetooth low-complexity, SubBand Codec

diff --git a/net-libs/opal/opal-3.12.4-r1.ebuild 
b/net-libs/opal/opal-3.12.4-r1.ebuild
deleted file mode 100644
index b42c15a8d05..00000000000
--- a/net-libs/opal/opal-3.12.4-r1.ebuild
+++ /dev/null
@@ -1,233 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils autotools toolchain-funcs java-pkg-opt-2 flag-o-matic
-
-DESCRIPTION="C++ class library normalising numerous telephony protocols"
-HOMEPAGE="http://www.opalvoip.org/";
-SRC_URI="mirror://sourceforge/opalvoip/${P}.tar.bz2
-       doc? ( mirror://sourceforge/opalvoip/${P}-htmldoc.tar.bz2 )"
-
-LICENSE="MPL-1.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="celt debug doc +dtmf examples fax ffmpeg h224 h281 h323 iax ilbc
-ipv6 ivr ixj java ldap lid +plugins sbc sip sipim +sound srtp ssl static-libs
-stats swig theora +video vpb vxml wav x264 x264-static xml"
-
-REQUIRED_USE="x264-static? ( x264 )
-       h281? ( h224 )
-       sip? ( sipim )"
-
-RDEPEND=">=net-libs/ptlib-2.12.4:=[stun,debug=,dtmf,http,ipv6?,ldap?,sound?,ssl?,video?,vxml?,wav?,xml?]
-       >=media-libs/speex-1.2_beta
-       fax? ( net-libs/ptlib[asn] )
-       h323? ( net-libs/ptlib[asn] )
-       ivr? ( net-libs/ptlib[http,xml,vxml] )
-       java? ( >=virtual/jre-1.4:* )
-       plugins? (
-               media-sound/gsm
-               celt? ( media-libs/celt:0 )
-               ffmpeg? ( virtual/ffmpeg[encode] )
-               ixj? ( sys-kernel/linux-headers )
-               ilbc? ( dev-libs/ilbc-rfc3951 )
-               sbc? ( media-libs/libsamplerate )
-               theora? ( media-libs/libtheora )
-               x264? ( virtual/ffmpeg
-                       media-libs/x264 ) )
-       srtp? ( net-libs/libsrtp:0= )
-       vxml? ( net-libs/ptlib[http,vxml] )"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-       >=sys-devel/gcc-3
-       java? ( swig? ( dev-lang/swig )
-               >=virtual/jdk-1.4 )"
-
-# NOTES:
-# ffmpeg[encode] is for h263 and mpeg4
-# ssl, xml, vxml, ipv6, ldap, sound, wav, and video are use flags
-#   herited from ptlib: feature is enabled if ptlib has enabled it
-#   however, disabling it if ptlib has it looks hard (coz of buildopts.h)
-#   forcing ptlib to disable it for opal is not a solution too
-#   atm, accepting the "auto-feature" looks like a good solution
-#   (asn is used for fax and config _only_ for examples)
-# OPALDIR should not be used anymore but if a package still need it, create it
-
-pkg_setup() {
-       # workaround for bug 282838
-       append-cxxflags "-fno-visibility-inlines-hidden"
-       append-cxxflags "-fno-strict-aliasing"
-
-       java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-       # remove visual studio related files from samples/
-       if use examples; then
-               rm -f samples/*/*.vcproj
-               rm -f samples/*/*.sln
-               rm -f samples/*/*.dsp
-               rm -f samples/*/*.dsw
-       fi
-
-       epatch "${FILESDIR}/${PN}-3.10.9-svn_revision_override.patch"
-       epatch "${FILESDIR}/${PN}-3.10.9-labs_is_in_stdlib.patch"
-       epatch "${FILESDIR}/${PN}-3.12.4-avoid_cflags_mixup.patch"
-
-       if ! use h323; then
-               # Without this patch, ekiga wont compile, even with
-               # USE=-h323.
-               epatch "${FILESDIR}/${PN}-3.10.9-disable-h323-workaround.patch"
-       fi
-
-       epatch "${FILESDIR}/${PN}-3.12.4-java-ruby-swig-fix.patch"
-
-       sed -i -e "s:\(.*HAS_H224.*\), \[OPAL_H323\]:\1:" configure.ac \
-               || die "sed failed"
-
-       eaclocal
-       eautoconf
-
-       # in plugins
-       cd plugins/
-       eaclocal
-       eautoconf
-       cd ..
-
-       # disable celt if celt is not enabled (prevent auto magic dep)
-       # already in repository
-       if ! use celt; then
-               sed -i -e "s/HAVE_CELT=yes/HAVE_CELT=no/" plugins/configure \
-                       || die "sed failed"
-       fi
-
-       # fix automatic swig detection, upstream bug 2712521 (upstream reject 
it)
-       if ! use swig; then
-               sed -i -e "/^SWIG=/d" configure || die "patching configure 
failed"
-       fi
-
-       use ilbc || { rm -r plugins/audio/iLBC/ || die "removing iLBC failed"; }
-
-       java-pkg-opt-2_src_prepare
-}
-
-src_configure() {
-       # --with-libavcodec-source-dir should _not_ be set, it's for trunk 
sources
-       # versioncheck: check for ptlib version
-       # shared: should always be enabled for a lib
-       # localspeex, localspeexdsp, localgsm, localilbc: never use bundled libs
-       # samples: only build some samples, useless
-       # libavcodec-stackalign-hack: prevent hack (default disable by upstream)
-       # default-to-full-capabilties: default enable by upstream
-       # aec: atm, only used when bundled speex, so it's painless for us
-       # zrtp doesn't depend on net-libs/libzrtpcpp but on libzrtp from
-       #       http://zfoneproject.com/ wich is not in portage
-       # msrp: highly experimental
-       # spandsp: doesn't work with newest spandsp, upstream bug 2796047
-       # g711plc: force enable
-       # rfc4103: not really used, upstream bug 2795831
-       # t38, spandsp: merged in fax
-       # h450, h460, h501: merged in h323 (they are additional features of 
h323)
-       econf \
-               --enable-versioncheck \
-               --enable-shared \
-               --disable-capi \
-               --disable-zrtp \
-               --disable-localspeex \
-               --disable-localspeexdsp \
-               --disable-localgsm \
-               --disable-localilbc \
-               --disable-samples \
-               --disable-libavcodec-stackalign-hack \
-               --enable-default-to-full-capabilties \
-               --enable-aec \
-               --disable-msrp \
-               --disable-spandsp \
-               --enable-g711plc \
-               --enable-rfc4103 \
-               $(use_enable debug) \
-               $(use_enable fax) \
-               $(use_enable fax t38) \
-               $(use_enable h224) \
-               $(use_enable h281) \
-               $(use_enable h323) \
-               $(use_enable h323 h450) \
-               $(use_enable h323 h460) \
-               $(use_enable h323 h501) \
-               $(use_enable iax) \
-               $(use_enable ivr) \
-               $(use_enable ixj) \
-               $(use_enable java) \
-               $(use_enable lid) \
-               $(use_enable plugins) \
-               $(use_enable sbc) \
-               $(use_enable sip) \
-               $(use_enable sipim) \
-               $(use_enable stats statistics) \
-               $(use_enable video) $(use_enable video rfc4175) \
-               $(use_enable vpb) \
-               $(use_enable x264 h264) \
-               $(use_enable x264-static x264-link-static)
-}
-
-src_compile() {
-       local makeopts=""
-
-       use debug && makeopts="debug"
-
-       emake ${makeopts}
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-
-       # Get rid of static libraries if not requested
-       # There seems to be no easy way to disable this in the build system
-       if ! use static-libs; then
-               rm -v "${D}"/usr/lib*/*.a || die
-       fi
-
-       if use doc; then
-               dohtml -r "${WORKDIR}"/html/* docs/*
-       fi
-
-       # ChangeLog is not standard and does not exist on 3.10.10
-#      dodoc ChangeLog-${PN}-v${PV//./_}.txt || die "dodoc failed"
-
-       if use examples; then
-               local exampledir="/usr/share/doc/${PF}/examples"
-               local basedir="samples"
-               local sampledirs="`ls ${basedir} --hide=configure* \
-                       --hide=opal_samples.mak.in --hide=ReadMe.txt`"
-
-               # first, install files
-               insinto ${exampledir}/
-               doins ${basedir}/{configure*,opal_samples*,ReadMe.txt}
-
-               # now, all examples
-               for x in ${sampledirs}; do
-                       insinto ${exampledir}/${x}/
-                       doins ${basedir}/${x}/*
-               done
-
-               # some examples need version.h
-               insinto "/usr/share/doc/${PF}/"
-               doins version.h
-       fi
-}
-
-pkg_postinst() {
-       if use examples; then
-               ewarn "All examples have been installed, some of them will not 
work on your system"
-               ewarn "it will depend of the enabled USE flags in ptlib and 
opal"
-       fi
-
-       if ! use plugins || ! use sound || ! use video; then
-               ewarn "You have disabled sound, video or plugins USE flags."
-               ewarn "Most audio/video features or plugins have been disabled 
silently"
-               ewarn "even if enabled via USE flags."
-               ewarn "Having a feature enabled via USE flag but disabled can 
lead to issues."
-       fi
-}

Reply via email to