summaryrefslogtreecommitdiff
path: root/net-libs
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2015-09-09 01:24:00 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2015-09-09 01:24:00 +0300
commitd6fd3af01ec0ac434c186fea3105b5ed169dacef (patch)
tree2fab4ea1ddc6514c1e8f5d056736c1332414f1b5 /net-libs
parentdcc3b4269129f9c329cafaed5d6610baf6e0a7ca (diff)
removed outdated packages
removed outdated config options in mpv
Diffstat (limited to 'net-libs')
l---------net-libs/opal/files1
-rw-r--r--net-libs/opal/opal-3.4.5.ebuild75
-rw-r--r--net-libs/opal/opal-3.6.4.ebuild72
-rw-r--r--net-libs/opal/opal-9999.ebuild76
4 files changed, 0 insertions, 224 deletions
diff --git a/net-libs/opal/files b/net-libs/opal/files
deleted file mode 120000
index 1022705..0000000
--- a/net-libs/opal/files
+++ /dev/null
@@ -1 +0,0 @@
-/usr/portage/net-libs/opal/files \ No newline at end of file
diff --git a/net-libs/opal/opal-3.4.5.ebuild b/net-libs/opal/opal-3.4.5.ebuild
deleted file mode 100644
index 6939ab2..0000000
--- a/net-libs/opal/opal-3.4.5.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="C++ class library normalising numerous telephony protocols"
-HOMEPAGE="http://www.opalvoip.org/"
-SRC_URI="mirror://sourceforge/opalvoip/${P}.tar.bz2"
-
-LICENSE="MPL-1.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug doc java"
-
-RDEPEND=">=dev-libs/ptlib-2.0.0
- >=media-video/ffmpeg-0.4.7
- media-libs/speex
- java? ( virtual/jdk )"
-
-pkg_setup() {
- if use debug && ! built_with_use dev-libs/ptlib debug; then
- eerror "You need to build dev-libs/ptlib with USE=debug enabled."
- die "dev-libs/ptlib has to be built with USE=debug"
- fi
-
- if ! use debug && built_with_use dev-libs/ptlib debug; then
- eerror "You need to build dev-libs/ptlib without USE=debug."
- die "dev-libs/ptlib has not to be built with USE=debug"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}"/${PN}-lpcini.patch
- cd "${S}/plugins/video/H.264/gpl"
- epatch ${FILESDIR}/enc-ctx.cxx.diff
- cd "${S}/plugins/video/THEORA"
- epatch ${FILESDIR}/theora_frame.cxx.diff
- epatch ${FILESDIR}/theora__plugin.cxx.diff
-}
-
-src_compile() {
- local makeopts
-
- filter-ldflags -Wl,--as-needed --as-needed
-
- # zrtp doesn't depend on net-libs/libzrtpcpp but on libzrtp from
- # http://zfoneproject.com/ that is not in portage
- econf \
- $(use_enable debug) \
- $(use_enable java) \
- --enable-plugins \
- --disable-localspeex \
- --disable-zrtp \
- || die "econf failed"
-
- if use debug; then
- makeopts="debug"
- else
- makeopts="opt"
- fi
-
- emake ${makeopts} || die "emake failed"
-}
-
-src_install() {
- emake PREFIX=/usr DESTDIR="${D}" install || die "emake install failed"
-
- if use doc; then
- dohtml -r html/* docs/* || die "documentation installation failed"
- fi
-}
diff --git a/net-libs/opal/opal-3.6.4.ebuild b/net-libs/opal/opal-3.6.4.ebuild
deleted file mode 100644
index 1ea63ff..0000000
--- a/net-libs/opal/opal-3.6.4.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="C++ class library normalising numerous telephony protocols"
-HOMEPAGE="http://www.opalvoip.org/"
-SRC_URI="mirror://sourceforge/opalvoip/${P}.tar.bz2"
-
-LICENSE="MPL-1.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug doc java"
-
-RDEPEND=">=net-libs/ptlib-2.6.4
- >=media-video/ffmpeg-0.4.7
- media-libs/speex
- java? ( virtual/jdk )"
-
-pkg_setup() {
- if use debug && ! built_with_use net-libs/ptlib debug; then
- eerror "You need to build dev-libs/ptlib with USE=debug enabled."
- die "dev-libs/ptlib has to be built with USE=debug"
- fi
-
- if ! use debug && built_with_use net-libs/ptlib debug; then
- eerror "You need to build dev-libs/ptlib without USE=debug."
- die "dev-libs/ptlib has not to be built with USE=debug"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
-# epatch ${FILESDIR}/gcc-4.4.patch
-# epatch "${FILESDIR}"/${PN}-lpcini.patch
-}
-
-src_compile() {
- local makeopts
-
- filter-ldflags -Wl,--as-needed --as-needed
-
- # zrtp doesn't depend on net-libs/libzrtpcpp but on libzrtp from
- # http://zfoneproject.com/ that is not in portage
- econf \
- $(use_enable debug) \
- $(use_enable java) \
- --enable-plugins \
- --enable-video \
- --disable-localspeex \
- --disable-zrtp \
- || die "econf failed"
-
- if use debug; then
- makeopts="debug"
- else
- makeopts="opt"
- fi
-
- emake ${makeopts} || die "emake failed"
-}
-
-src_install() {
- emake PREFIX=/usr DESTDIR="${D}" install || die "emake install failed"
-
- if use doc; then
- dohtml -r html/* docs/* || die "documentation installation failed"
- fi
-}
diff --git a/net-libs/opal/opal-9999.ebuild b/net-libs/opal/opal-9999.ebuild
deleted file mode 100644
index dbe27fd..0000000
--- a/net-libs/opal/opal-9999.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils flag-o-matic subversion autotools
-
-DESCRIPTION="C++ class library normalising numerous telephony protocols"
-HOMEPAGE="http://www.opalvoip.org/"
-SRC_URI=""
-
-ESVN_REPO_URI="https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/trunk/"
-ESVN_STORE_DIR="${DISTDIR}/svn-src"
-ESVN_PROJECT="${PN/-svn}"
-
-S="${WORKDIR}/${P/_/}"
-
-
-LICENSE="MPL-1.0"
-SLOT=""
-KEYWORDS=""
-IUSE="debug doc java versioncheck +plugins"
-
-RDEPEND=">=dev-libs/ptlib-2.0.0
- >=media-video/ffmpeg-0.4.7
- media-libs/speex
- java? ( virtual/jdk )"
-
-pkg_setup() {
- if use debug && ! built_with_use dev-libs/ptlib debug; then
- eerror "You need to build dev-libs/ptlib with USE=debug enabled."
- die "dev-libs/ptlib has to be built with USE=debug"
- fi
-
- if ! use debug && built_with_use dev-libs/ptlib debug; then
- eerror "You need to build dev-libs/ptlib without USE=debug."
- die "dev-libs/ptlib has not to be built with USE=debug"
- fi
-}
-
-src_unpack() {
- subversion_src_unpack
- cd "${S}"
-# eautoreconf
- epatch "${FILESDIR}"/gcc4.4.patch
-}
-
-src_compile() {
- local makeopts
-
-# filter-ldflags -Wl,--as-needed --as-needed
-
- # zrtp doesn't depend on net-libs/libzrtpcpp but on libzrtp from
- # http://zfoneproject.com/ that is not in portage
- econf \
- $(use_enable debug) \
- $(use_enable java) \
- $(use_enable plugins) \
- $(use_enable versioncheck) \
- || die "econf failed"
-
- if use debug; then
- makeopts="debug"
- else
- makeopts="opt"
- fi
-
- emake ${makeopts} || die "emake failed"
-}
-
-src_install() {
- emake PREFIX=/usr DESTDIR="${D}" install || die "emake install failed"
-
-# if use doc; then
-# dohtml -r html/* docs/* || die "documentation installation failed"
-# fi
-}