diff options
-rw-r--r-- | media-video/mpv/mpv-scm.ebuild | 2 | ||||
l--------- | net-libs/opal/files | 1 | ||||
-rw-r--r-- | net-libs/opal/opal-3.4.5.ebuild | 75 | ||||
-rw-r--r-- | net-libs/opal/opal-3.6.4.ebuild | 72 | ||||
-rw-r--r-- | net-libs/opal/opal-9999.ebuild | 76 | ||||
-rw-r--r-- | net-voip/ekiga/ekiga-3.0.1.ebuild | 95 | ||||
-rw-r--r-- | net-voip/ekiga/ekiga-3.2.5.ebuild | 97 | ||||
-rw-r--r-- | net-voip/ekiga/ekiga-9999.ebuild | 109 |
8 files changed, 0 insertions, 527 deletions
diff --git a/media-video/mpv/mpv-scm.ebuild b/media-video/mpv/mpv-scm.ebuild index 268b3b1..dd16d5d 100644 --- a/media-video/mpv/mpv-scm.ebuild +++ b/media-video/mpv/mpv-scm.ebuild @@ -178,9 +178,7 @@ src_configure() { $(use_enable dvd dvdnav) $(use_enable cdio cdda) $(use_enable enca) - $(use_enable ladspa) $(use_enable rubberband) - $(use_enable bs2b libbs2b) $(use_enable lcms lcms2) --disable-vapoursynth # vapoursynth is not packaged --disable-vapoursynth-lazy 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 -} diff --git a/net-voip/ekiga/ekiga-3.0.1.ebuild b/net-voip/ekiga/ekiga-3.0.1.ebuild deleted file mode 100644 index 2f062bf..0000000 --- a/net-voip/ekiga/ekiga-3.0.1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="1" - -inherit eutils gnome2 - -DESCRIPTION="H.323 and SIP VoIP softphone" -HOMEPAGE="http://www.ekiga.org/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="avahi dbus debug doc eds gconf gnome ldap libnotify xv" - -RDEPEND=">=dev-libs/ptlib-2.4.2 - >=net-libs/opal-3.4.2 - >=x11-libs/gtk+-2.12.0:2 - >=dev-libs/glib-2.8.0:2 - dev-libs/libsigc++:2 - dev-libs/libxml2:2 - avahi? ( >=net-dns/avahi-0.6.0 ) - dbus? ( >=dev-libs/dbus-glib-0.36 ) - eds? ( >=gnome-extra/evolution-data-server-1.2 ) - gconf? ( >=gnome-base/gconf-2.6.0:2 ) - gnome? ( >=gnome-base/libgnome-2.14.0 - >=gnome-base/libgnomeui-2.14.0 ) - ldap? ( net-nds/openldap ) - libnotify? ( x11-libs/libnotify ) - xv? ( x11-libs/libXv )" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - >=dev-util/pkgconfig-0.12.0 - >=dev-util/intltool-0.35 - doc? ( app-text/scrollkeeper - app-text/gnome-doc-utils )" - -DOCS="AUTHORS ChangeLog FAQ NEWS README" - -pkg_setup() { - # ekiga has to be built like opal and ptlib but as opal has to be built - # like ptlib, it should be possible to check only opal but as ekiga is - # linking to both, we are cheking both - if use debug && (! built_with_use dev-libs/ptlib debug || - ! built_with_use net-libs/opal debug); then - eerror "You need to build dev-libs/ptlib and net-libs/opal with\ - USE=debug enabled." - die "dev-libs/ptlib and net-libs/opal have to be built with USE=debug" - fi - - if ! use debug && (built_with_use dev-libs/ptlib debug || - built_with_use net-libs/opal debug); then - eerror "You need to build dev-libs/ptlib and net-libs/opal without\ - USE=debug." - die "dev-libs/ptlib and net-libs/opal has not to be built with USE=debug" - fi - - # dbus-service is always enable if dbus is enable, no reason to disable it - G2CONF="${G2CONF} - $(use_enable avahi) - $(use_enable dbus) - $(use_enable dbus dbus_service) - $(use_enable debug) - $(use_enable doc gdu) - $(use_enable eds) - $(use_enable gconf) - $(use_enable gnome) - $(use_enable ldap) - $(use_enable libnotify notify) - $(use_enable xv)" -} - -src_unpack() { - gnome2_src_unpack - - # remove call to gconftool-2 --shutdown - sed -i -e '/gconftool-2 --shutdown/d' Makefile.in \ - || die "Patching Makefile.in failed" - - # fix ekiga-helper dbus service .in file - sed -i -e 's/@PACKAGE_NAME@/ekiga/'\ - src/components/org.ekiga.Helper.service.in \ - || die "Patching src/components/org.ekiga.Helper.service.in failed" -} - -pkg_postinst() { - gnome2_pkg_postinst - - if ! use gnome; then - ewarn "USE=-gnome is experimental, some weirdness with the UI and" - ewarn "config keys should appear." - fi -} diff --git a/net-voip/ekiga/ekiga-3.2.5.ebuild b/net-voip/ekiga/ekiga-3.2.5.ebuild deleted file mode 100644 index b6a6851..0000000 --- a/net-voip/ekiga/ekiga-3.2.5.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="1" - -inherit eutils gnome2 - -DESCRIPTION="H.323 and SIP VoIP softphone" -HOMEPAGE="http://www.ekiga.org/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="avahi dbus debug doc eds gconf gnome kde ldap libnotify xv" - -RDEPEND=">=net-libs/ptlib-2.6.0 - >=net-libs/opal-3.6.0 - >=x11-libs/gtk+-2.12.0:2 - >=dev-libs/glib-2.8.0:2 - dev-libs/libsigc++:2 - dev-libs/libxml2:2 - avahi? ( >=net-dns/avahi-0.6.0 ) - dbus? ( >=dev-libs/dbus-glib-0.36 ) - eds? ( >=gnome-extra/evolution-data-server-1.2 ) - gconf? ( >=gnome-base/gconf-2.6.0:2 ) - gnome? ( >=gnome-base/libgnome-2.14.0 - >=gnome-base/libgnomeui-2.14.0 ) - ldap? ( net-nds/openldap ) - libnotify? ( x11-libs/libnotify ) - xv? ( x11-libs/libXv )" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - >=dev-util/pkgconfig-0.12.0 - >=dev-util/intltool-0.35 - doc? ( app-text/scrollkeeper - app-text/gnome-doc-utils )" - -DOCS="AUTHORS ChangeLog FAQ NEWS README" - -pkg_setup() { - # ekiga has to be built like opal and ptlib but as opal has to be built - # like ptlib, it should be possible to check only opal but as ekiga is - # linking to both, we are cheking both - if use debug && (! built_with_use net-libs/ptlib debug || - ! built_with_use net-libs/opal debug); then - eerror "You need to build dev-libs/ptlib and net-libs/opal with\ - USE=debug enabled." - die "dev-libs/ptlib and net-libs/opal have to be built with USE=debug" - fi - - if ! use debug && (built_with_use net-libs/ptlib debug || - built_with_use net-libs/opal debug); then - eerror "You need to build dev-libs/ptlib and net-libs/opal without\ - USE=debug." - die "dev-libs/ptlib and net-libs/opal has not to be built with USE=debug" - fi - - # dbus-service is always enable if dbus is enable, no reason to disable it - G2CONF="${G2CONF} - $(use_enable avahi) - $(use_enable dbus) - $(use_enable dbus dbus_service) - $(use_enable debug) - $(use_enable doc gdu) - $(use_enable eds) - $(use_enable gconf) - $(use_enable gnome) - $(use_enable ldap) - $(use_enable libnotify notify) - $(use_enable xv) - $(use_enable kde) - $(use_enable kde kab)" -} - -src_unpack() { - gnome2_src_unpack - - # remove call to gconftool-2 --shutdown - sed -i -e '/gconftool-2 --shutdown/d' Makefile.in \ - || die "Patching Makefile.in failed" - - # fix ekiga-helper dbus service .in file -# sed -i -e 's/@PACKAGE_NAME@/ekiga/'\ -# src/components/org.ekiga.Helper.service.in \ -# || die "Patching src/components/org.ekiga.Helper.service.in failed" -} - -pkg_postinst() { - gnome2_pkg_postinst - - if ! use gnome; then - ewarn "USE=-gnome is experimental, some weirdness with the UI and" - ewarn "config keys should appear." - fi -} diff --git a/net-voip/ekiga/ekiga-9999.ebuild b/net-voip/ekiga/ekiga-9999.ebuild deleted file mode 100644 index 9f45105..0000000 --- a/net-voip/ekiga/ekiga-9999.ebuild +++ /dev/null @@ -1,109 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="1" - -inherit eutils git autotools gnome2 - -DESCRIPTION="H.323 and SIP VoIP softphone" -HOMEPAGE="http://www.ekiga.org/" -SRC_URI="" - -SLOT="" -LICENSE="GPL-2" -KEYWORDS="" -IUSE="avahi dbus debug doc eds gconf gnome ldap libnotify xv" - -EGIT_REPO_URI="http://svn.gnome.org/svn/ekiga/trunk/" -EGIT_BOOTSTRAP="./autogen.sh $(use_enable avahi) $(use_enable dbus) $(use_enable dbus dbus_service) $(use_enable debug) $(use_enable doc gdu) $(use_enable eds) $(use_enable gconf) $(use_enable gnome) $(use_enable ldap) $(use_enable libnotify notify) $(use_enable xv)" - - -S="${WORKDIR}/${P/_/}" - -RDEPEND=">=dev-libs/ptlib-2.4.2 - >=net-libs/opal-3.4.2 - >=x11-libs/gtk+-2.12.0:2 - >=dev-libs/glib-2.8.0:2 - dev-libs/libsigc++:2 - dev-libs/libxml2:2 - gnome-base/gconf - gnome-base/gnome-common - app-text/gnome-doc-utils - avahi? ( >=net-dns/avahi-0.6.0 ) - dbus? ( >=dev-libs/dbus-glib-0.36 ) - eds? ( >=gnome-extra/evolution-data-server-1.2 ) - gconf? ( >=gnome-base/gconf-2.6.0:2 ) - gnome? ( >=gnome-base/libgnome-2.14.0 - >=gnome-base/libgnomeui-2.14.0 ) - ldap? ( net-nds/openldap ) - libnotify? ( x11-libs/libnotify ) - xv? ( x11-libs/libXv )" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - >=dev-util/pkgconfig-0.12.0 - >=dev-util/intltool-0.35 - doc? ( app-text/scrollkeeper - app-text/gnome-doc-utils )" - -DOCS="AUTHORS ChangeLog FAQ NEWS README" - -pkg_setup() { - # ekiga has to be built like opal and ptlib but as opal has to be built - # like ptlib, it should be possible to check only opal but as ekiga is - # linking to both, we are cheking both - if use debug && (! built_with_use dev-libs/ptlib debug || - ! built_with_use net-libs/opal debug); then - eerror "You need to build dev-libs/ptlib and net-libs/opal with\ - USE=debug enabled." - die "dev-libs/ptlib and net-libs/opal have to be built with USE=debug" - fi - - if ! use debug && (built_with_use dev-libs/ptlib debug || - built_with_use net-libs/opal debug); then - eerror "You need to build dev-libs/ptlib and net-libs/opal without\ - USE=debug." - die "dev-libs/ptlib and net-libs/opal has not to be built with USE=debug" - fi - - # dbus-service is always enable if dbus is enable, no reason to disable it - G2CONF="${G2CONF} - $(use_enable avahi) - $(use_enable dbus) - $(use_enable dbus dbus_service) - $(use_enable debug) - $(use_enable doc gdu) - $(use_enable eds) - $(use_enable gconf) - $(use_enable gnome) - $(use_enable ldap) - $(use_enable libnotify notify) - $(use_enable xv) - " -} - -src_unpack() { - - git_src_unpack - cd "${S}" -# eautoreconf - - # remove call to gconftool-2 --shutdown -# sed -i -e '/gconftool-2 --shutdown/d' Makefile.in \ -# || die "Patching Makefile.in failed" - - # fix ekiga-helper dbus service .in file -# sed -i -e 's/@PACKAGE_NAME@/ekiga/'\ -# src/components/org.ekiga.Helper.service.in \ -# || die "Patching src/components/org.ekiga.Helper.service.in failed" -} - -pkg_postinst() { - gnome2_pkg_postinst - - if ! use gnome; then - ewarn "USE=-gnome is experimental, some weirdness with the UI and" - ewarn "config keys should appear." - fi -} |