media-tv/miro is in the tree as media-video/miro
media-tv/zattoo is no longer provided by the Zattoo guys
This commit is contained in:
parent
611d5ec2e1
commit
6507f835a7
7 changed files with 0 additions and 335 deletions
|
@ -1,6 +0,0 @@
|
|||
DIST Miro-1.1.1.tar.gz 13330347 RMD160 7dabcfbadcb38aa33e8ba22c7cb3991e534c3aed SHA1 8e1fcdd3d984d0d8aecc80c7e3d08a4768fa8ff9 SHA256 54ab6c252eae70bb4120d4a13c594fb0f51bcc17eef406b24061bbb8370e6105
|
||||
DIST Miro-1.1.2.tar.gz 13335353 RMD160 38caad8f83b90f07bbb83aff49508a902f8e1150 SHA1 cfd2dbc4ebb144361cf1ff14c80daae0d7d9e223 SHA256 b5bbfbc1e41d483bd0ddf19f1f0cef5d5bd834d010f760d6e3032b44e55cc0bf
|
||||
DIST Miro-1.1.tar.gz 13326662 RMD160 df38515539be237aa1a93e4a88510379a98eb2e1 SHA1 d5ddd2f49b9ff99fe0a8fe38dd2e9f4e85c29040 SHA256 25ef81d412fda940c6628d590a6292375eebb4ee23732973fbbfbb0a13e7f454
|
||||
EBUILD miro-1.1.1.ebuild 1761 RMD160 1ce643235c777b3b087361ee3792adb25ac66a5e SHA1 ec84695df01a48beb6bce67eaf97027b76be672b SHA256 64b34e9ac5c20a7c3e6e3351b9d70286bec7542a94c2fe99f19ee27aa73e64b8
|
||||
EBUILD miro-1.1.2.ebuild 1793 RMD160 20c7998be518703b0d7746570d1e6e73e3777cbb SHA1 050eae50a68ce5c6ebc30780fce20776f320b1a1 SHA256 24590d28fd12a015e59a8b80c854fd54ad1e2cea4186a2db968e5bd1d7e1663d
|
||||
EBUILD miro-1.1.ebuild 1742 RMD160 e6b34ab1519ddff1fecc1d56481492c56abceac7 SHA1 ff4624b69908146fdbbb1fdd3304f59eb9c639ac SHA256 a5e845f63448fed0b6621cb7390af3a9aeb84e22c7587bc14409ddfefa033b3d
|
|
@ -1,68 +0,0 @@
|
|||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="Open source video player"
|
||||
HOMEPAGE="http://www.getmiro.com/"
|
||||
SRC_URI="http://ftp.osuosl.org/pub/pculture.org/miro/src/Miro-${PV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="doc"
|
||||
|
||||
#TODO: This is simply rewritten from setup.cfg. Adding version requirements is strongly recommended.
|
||||
DEPEND="|| ( >=dev-lang/python-2.5
|
||||
>=dev-python/pysqlite-2 )
|
||||
dev-libs/nss
|
||||
>=dev-libs/boost-1.34.1-r1
|
||||
dev-python/gnome-python-extras
|
||||
dev-python/dbus-python
|
||||
>=dev-python/pyrex-0.9.6.4
|
||||
media-libs/xine-lib
|
||||
media-libs/libfame
|
||||
dev-util/pkgconfig
|
||||
dev-python/bsddb3
|
||||
doc? ( dev-util/devhelp )"
|
||||
|
||||
pkg_setup() {
|
||||
if ! built_with_use dev-lang/python berkdb; then
|
||||
eerror ""
|
||||
eerror "You should reemerge dev-lang/python with \"berkdb\" flag set"
|
||||
eerror ""
|
||||
die "dev-lang/python reemerge needed"
|
||||
fi
|
||||
|
||||
if has_version ">=dev-lang/python-2.5" &&
|
||||
! has_version ">=dev-python/pysqlite-2" &&
|
||||
! built_with_use dev-lang/python sqlite ; then
|
||||
eerror ""
|
||||
eerror "You should reemerge dev-lang/python with \"sqlite\" flag set"
|
||||
eerror ""
|
||||
die "dev-lang/python reemerge needed"
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
./Miro-${PV/_/-}/platform/gtk-x11/setup.py build \
|
||||
|| die "build failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
./Miro-${PV/_/-}/platform/gtk-x11/setup.py install --root "${D}" \
|
||||
|| die "install failed"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
MOZSETUP=/usr/lib*/python*/site-packages/miro/mozsetup.py
|
||||
elog ""
|
||||
elog "To increase the font size of the main display area, add:"
|
||||
elog "user_pref(\"font.minimum-size.x-western\", 15);"
|
||||
elog ""
|
||||
elog "to the following file:"
|
||||
elog /usr/lib*/python*/site-packages/miro/mozsetup.py
|
||||
elog ""
|
||||
}
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
# Copyright 1999-2008 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils multilib distutils
|
||||
|
||||
MY_P="${P/m/M}"
|
||||
DESCRIPTION="Open source video player"
|
||||
HOMEPAGE="http://www.getmiro.com/"
|
||||
SRC_URI="http://ftp.osuosl.org/pub/pculture.org/miro/src/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="doc"
|
||||
|
||||
#TODO: This is simply rewritten from setup.cfg. Adding version requirements is strongly recommended.
|
||||
DEPEND=">=dev-lang/python-2.4
|
||||
>=dev-python/pysqlite-2
|
||||
dev-libs/nss
|
||||
>=dev-libs/boost-1.34.1-r1
|
||||
dev-python/gnome-python-extras
|
||||
dev-python/dbus-python
|
||||
>=dev-python/pyrex-0.9.6.4
|
||||
sys-libs/db
|
||||
media-libs/xine-lib
|
||||
media-libs/libfame
|
||||
dev-util/pkgconfig
|
||||
doc? ( dev-util/devhelp )"
|
||||
|
||||
S="${WORKDIR}/${MY_P}/platform/gtk-x11"
|
||||
|
||||
pkg_postinst() {
|
||||
distutils_pkg_postinst
|
||||
|
||||
if ! built_with_use dev-lang/python berkdb; then
|
||||
eerror ""
|
||||
eerror "You must reemerge dev-lang/python with \"berkdb\" flag set."
|
||||
eerror "Otherwise Miro won't run."
|
||||
eerror ""
|
||||
fi
|
||||
if has_version ">=dev-lang/python-2.5" &&
|
||||
! built_with_use dev-lang/python sqlite ; then
|
||||
eerror ""
|
||||
eerror "You should reemerge dev-lang/python with \"sqlite\" flag set."
|
||||
eerror "This will improve Miro's speed."
|
||||
eerror ""
|
||||
fi
|
||||
if has_version ">=dev-libs/openssl-0.9.8f" ; then
|
||||
ewarn ""
|
||||
ewarn "Versions of openssl >= 0.9.8f can cause Miro segfaulting"
|
||||
ewarn ""
|
||||
fi
|
||||
|
||||
MOZSETUP="/usr/$(get_libdir)/python${PYVER}/site-packages/${PN}/mozsetup.py"
|
||||
elog ""
|
||||
elog "To increase the font size of the main display area, add:"
|
||||
elog "user_pref(\"font.minimum-size.x-western\", 15);"
|
||||
elog ""
|
||||
elog "to the following file:"
|
||||
elog "${MOZSETUP}"
|
||||
elog ""
|
||||
}
|
|
@ -1,67 +0,0 @@
|
|||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="Open source video player"
|
||||
HOMEPAGE="http://www.getmiro.com/"
|
||||
SRC_URI="http://ftp.osuosl.org/pub/pculture.org/miro/src/Miro-${PV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="doc"
|
||||
|
||||
#TODO: This is simply rewritten from setup.cfg. Adding version requirements is strongly recommended.
|
||||
DEPEND="|| ( >=dev-lang/python-2.5
|
||||
>=dev-python/pysqlite-2 )
|
||||
dev-libs/nss
|
||||
>=dev-libs/boost-1.34.1-r1
|
||||
dev-python/gnome-python-extras
|
||||
dev-python/dbus-python
|
||||
>=dev-python/pyrex-0.9.6.4
|
||||
media-libs/xine-lib
|
||||
media-libs/libfame
|
||||
dev-util/pkgconfig
|
||||
doc? ( dev-util/devhelp )"
|
||||
|
||||
pkg_setup() {
|
||||
if ! built_with_use dev-lang/python berkdb; then
|
||||
eerror ""
|
||||
eerror "You should reemerge dev-lang/python with \"berkdb\" flag set"
|
||||
eerror ""
|
||||
die "dev-lang/python reemerge needed"
|
||||
fi
|
||||
|
||||
if has_version ">=dev-lang/python-2.5" &&
|
||||
! has_version ">=dev-python/pysqlite-2" &&
|
||||
! built_with_use dev-lang/python sqlite ; then
|
||||
eerror ""
|
||||
eerror "You should reemerge dev-lang/python with \"sqlite\" flag set"
|
||||
eerror ""
|
||||
die "dev-lang/python reemerge needed"
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
./Miro-${PV/_/-}/platform/gtk-x11/setup.py build \
|
||||
|| die "build failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
./Miro-${PV/_/-}/platform/gtk-x11/setup.py install --root "${D}" \
|
||||
|| die "install failed"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
MOZSETUP=/usr/lib*/python*/site-packages/miro/mozsetup.py
|
||||
elog ""
|
||||
elog "To increase the font size of the main display area, add:"
|
||||
elog "user_pref(\"font.minimum-size.x-western\", 15);"
|
||||
elog ""
|
||||
elog "to the following file:"
|
||||
elog /usr/lib*/python*/site-packages/miro/mozsetup.py
|
||||
elog ""
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
DIST zattoo-3.3.1.18350-i386.tgz 2375920 RMD160 0537167825c2def4e034e7af28418383f0c45217 SHA1 98a92cd0f1f3136414fd43a9a3e119615421c75c SHA256 33e861a0f7fb772efaeb1c01533137d74c820f235f47c8d8b6bb17abf324212d
|
||||
EBUILD zattoo-bin-3.3.1.18350-r1.ebuild 1919 RMD160 90b9e1089498de8dc03407e5bf280c1b3db7293d SHA1 8bb4ada11be947f749ed4c0a209b81e80dd6caa1 SHA256 0b1a4a06f948f11ea48797eedf13566ab8e1c765697cd51cdc2373601cbbb26e
|
||||
EBUILD zattoo-bin-3.3.1.18350.ebuild 1918 RMD160 e2ced10b65b39fdd54b92c052955d6189cdae2d3 SHA1 2796c02fe861367c95f3f122089749a6f29a1387 SHA256 01f454a805b3849381f766979c0edeb55321f654674317cd517471e3b0d14026
|
|
@ -1,64 +0,0 @@
|
|||
# Copyright 1999-2008 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="live TV via Internet"
|
||||
HOMEPAGE="http://zattoo.com/"
|
||||
SRC_URI="http://download.zattoo.com/${PN/-bin}-${PV}-i386.tgz"
|
||||
|
||||
LICENSE="Zattoo"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="app-crypt/mit-krb5
|
||||
dev-libs/nspr
|
||||
dev-libs/openssl
|
||||
gnome-base/libgnome
|
||||
gnome-base/libgnomeui
|
||||
media-libs/alsa-lib
|
||||
net-dns/libidn
|
||||
net-libs/libgssglue
|
||||
<net-libs/xulrunner-1.9
|
||||
net-misc/curl
|
||||
www-plugins/adobe-flash
|
||||
>=sys-libs/glibc-2.4
|
||||
x11-libs/gtkglext"
|
||||
|
||||
RESTRICT="fetch"
|
||||
|
||||
S=${WORKDIR}/dist
|
||||
|
||||
QA_EXECSTACK="opt/zattoo/bin/zattood
|
||||
opt/zattoo/bin/zattoo_player"
|
||||
|
||||
pkg_nofetch() {
|
||||
einfo "Due to license reasons download manually ${SRC_URI} to ${DISTDIR}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
echo "LD_LIBRARY_PATH=\"/opt/zattoo/lib\" /opt/zattoo/bin/zattoo_player">zattoo
|
||||
dobin zattoo || die
|
||||
into /opt/zattoo
|
||||
dobin usr/bin/zattoo{d,_player,-uri-handler} || die
|
||||
newlib.so usr/lib/zattoo/libfaad.so.0.0.0 libfaad.so.0 || die
|
||||
sed -i "s:/usr/bin/zattoo_player:/usr/bin/zattoo:g" usr/share/applications/zattoo_player.desktop
|
||||
domenu usr/share/applications/zattoo_player.desktop
|
||||
|
||||
insinto /usr/share/
|
||||
doins -r usr/share/{locale,zattoo_player}
|
||||
|
||||
dosym ../../../usr/lib/xulrunner/libgtkembedmoz.so /opt/zattoo/lib/libgtkembedmoz.so.0d
|
||||
dosym ../../../usr/lib/xulrunner/libmozjs.so /opt/zattoo/lib/libmozjs.so.0d
|
||||
dosym ../../../usr/lib/nspr/libnspr4.so /opt/zattoo/lib/libnspr4.so.0d
|
||||
dosym ../../../usr/lib/nspr/libplc4.so /opt/zattoo/lib/libplc4.so.0d
|
||||
dosym ../../../usr/lib/nspr/libplds4.so /opt/zattoo/lib/libplds4.so.0d
|
||||
dosym ../../../usr/lib/xulrunner/libxpcom.so /opt/zattoo/lib/libxpcom.so.0d
|
||||
dosym ../../../usr/lib/xulrunner/libxul.so /opt/zattoo/lib/libxul.so.0d
|
||||
dosym ../../../usr/lib/libcurl.so /opt/zattoo/lib/libcurl.so.3
|
||||
elog " "
|
||||
elog "just enter zattoo to run the player"
|
||||
elog " "
|
||||
}
|
|
@ -1,64 +0,0 @@
|
|||
# Copyright 1999-2008 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="live TV via Internet"
|
||||
HOMEPAGE="http://zattoo.com/"
|
||||
SRC_URI="http://download.zattoo.com/${PN/-bin}-${PV}-i386.tgz"
|
||||
|
||||
LICENSE="Zattoo"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="app-crypt/mit-krb5
|
||||
dev-libs/nspr
|
||||
dev-libs/openssl
|
||||
gnome-base/libgnome
|
||||
gnome-base/libgnomeui
|
||||
media-libs/alsa-lib
|
||||
net-dns/libidn
|
||||
net-libs/libgssglue
|
||||
<net-libs/xulrunner-1.9
|
||||
net-misc/curl
|
||||
net-www/netscape-flash
|
||||
>=sys-libs/glibc-2.4
|
||||
x11-libs/gtkglext"
|
||||
|
||||
RESTRICT="fetch"
|
||||
|
||||
S=${WORKDIR}/dist
|
||||
|
||||
QA_EXECSTACK="opt/zattoo/bin/zattood
|
||||
opt/zattoo/bin/zattoo_player"
|
||||
|
||||
pkg_nofetch() {
|
||||
einfo "Due to license reasons download manually ${SRC_URI} to ${DISTDIR}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
echo "LD_LIBRARY_PATH=\"/opt/zattoo/lib\" /opt/zattoo/bin/zattoo_player">zattoo
|
||||
dobin zattoo || die
|
||||
into /opt/zattoo
|
||||
dobin usr/bin/zattoo{d,_player,-uri-handler} || die
|
||||
newlib.so usr/lib/zattoo/libfaad.so.0.0.0 libfaad.so.0 || die
|
||||
sed -i "s:/usr/bin/zattoo_player:/usr/bin/zattoo:g" usr/share/applications/zattoo_player.desktop
|
||||
domenu usr/share/applications/zattoo_player.desktop
|
||||
|
||||
insinto /usr/share/
|
||||
doins -r usr/share/{locale,zattoo_player}
|
||||
|
||||
dosym ../../../usr/lib/xulrunner/libgtkembedmoz.so /opt/zattoo/lib/libgtkembedmoz.so.0d
|
||||
dosym ../../../usr/lib/xulrunner/libmozjs.so /opt/zattoo/lib/libmozjs.so.0d
|
||||
dosym ../../../usr/lib/nspr/libnspr4.so /opt/zattoo/lib/libnspr4.so.0d
|
||||
dosym ../../../usr/lib/nspr/libplc4.so /opt/zattoo/lib/libplc4.so.0d
|
||||
dosym ../../../usr/lib/nspr/libplds4.so /opt/zattoo/lib/libplds4.so.0d
|
||||
dosym ../../../usr/lib/xulrunner/libxpcom.so /opt/zattoo/lib/libxpcom.so.0d
|
||||
dosym ../../../usr/lib/xulrunner/libxul.so /opt/zattoo/lib/libxul.so.0d
|
||||
dosym ../../../usr/lib/libcurl.so /opt/zattoo/lib/libcurl.so.3
|
||||
elog " "
|
||||
elog "just enter zattoo to run the player"
|
||||
elog " "
|
||||
}
|
Loading…
Reference in a new issue