diff options
author | 2008-01-16 07:38:54 +0000 | |
---|---|---|
committer | 2008-01-16 07:38:54 +0000 | |
commit | d803fbcb23cda2edec51dc88829a3c3f5bca2462 (patch) | |
tree | 18131c5d8284f9457a5280b7bc0d20e12db3a006 /media-libs/capseo | |
parent | Stable on mips. (diff) | |
download | gentoo-2-d803fbcb23cda2edec51dc88829a3c3f5bca2462.tar.gz gentoo-2-d803fbcb23cda2edec51dc88829a3c3f5bca2462.tar.bz2 gentoo-2-d803fbcb23cda2edec51dc88829a3c3f5bca2462.zip |
fixed cpsplay build inclusion as stated in bug #205830
(Portage version: 2.1.4)
Diffstat (limited to 'media-libs/capseo')
-rw-r--r-- | media-libs/capseo/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/capseo/capseo-0.3.0_pre200712251-r1.ebuild | 101 | ||||
-rw-r--r-- | media-libs/capseo/files/digest-capseo-0.3.0_pre200712251-r1 | 3 | ||||
-rw-r--r-- | media-libs/capseo/files/no-cpsplay.diff | 21 |
4 files changed, 133 insertions, 2 deletions
diff --git a/media-libs/capseo/ChangeLog b/media-libs/capseo/ChangeLog index 1da6aba451a7..b8406741c924 100644 --- a/media-libs/capseo/ChangeLog +++ b/media-libs/capseo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/capseo -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/capseo/ChangeLog,v 1.3 2007/12/25 17:59:52 trapni Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/capseo/ChangeLog,v 1.4 2008/01/16 07:38:53 trapni Exp $ + +*capseo-0.3.0_pre200712251-r1 (16 Jan 2008) + + 16 Jan 2008; Christian Parpart <trapni@gentoo.org> +files/no-cpsplay.diff, + +capseo-0.3.0_pre200712251-r1.ebuild: + fixed cpsplay build inclusion as stated in bug #205830 *capseo-0.3.0_pre200712251 (25 Dec 2007) diff --git a/media-libs/capseo/capseo-0.3.0_pre200712251-r1.ebuild b/media-libs/capseo/capseo-0.3.0_pre200712251-r1.ebuild new file mode 100644 index 000000000000..214aaf404afc --- /dev/null +++ b/media-libs/capseo/capseo-0.3.0_pre200712251-r1.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/capseo/capseo-0.3.0_pre200712251-r1.ebuild,v 1.1 2008/01/16 07:38:53 trapni Exp $ + +inherit flag-o-matic multilib + +DESCRIPTION="Capseo Video Codec Library" +HOMEPAGE="http://rm-rf.in/captury/wiki/CapseoCodec" +SRC_URI="http://upstream.rm-rf.in/captury/captury-${PV}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug theora" + +RDEPEND=">=media-libs/libtheora-1.0_alpha6-r1" + +DEPEND="${RDEPEND} + >=dev-lang/yasm-0.4.0 + dev-util/pkgconfig" + +EMULTILIB_PKG="true" + +S="${WORKDIR}/captury-${PV}/${PN}" + +src_unpack() { + unpack "${A}" || die + + cd "${S}" + einfo "pwd: $(pwd)" + epatch "${FILESDIR}/no-cpsplay.diff" || die +} + +src_compile() { + if [[ -z ${OABI} ]] && has_multilib_profile; then + use debug && append-flags -O0 -g3 + use debug || append-flags -DNDEBUG=1 + + einfo "Building multilib ${PN} for ABIs: $(get_install_abis)" + OABI=${ABI} + for ABI in $(get_install_abis); do + export ABI=${ABI} + src_compile + done + ABI=${OABI} + return + fi + + cd "${S}" || die + + if [[ ! -f configure ]]; then + ./autogen.sh || die "autogen.sh failed" + fi + + # obviousely in src_install() it is set to "default" on non-multilib hosts, + # but isn't in src_compile() + ABI=${ABI:-default} + + mkdir abi-${ABI} + cd abi-${ABI} + + local myconf= + case ${ABI} in + amd64|x86) + myconf="${myconf} --with-accel=${ABI}" + ;; + esac + myconf="${myconf} $(use_enable theora)" + + ../configure ${myconf} \ + --prefix="/usr" \ + --host="$(get_abi_CHOST ${ABI})" \ + --libdir="/usr/$(get_libdir)" \ + || die "./configure for ABI ${ABI} failed" + + emake || die "make for ABI ${ABI} failed" +} + +src_install() { + for ABI in $(get_install_abis); do + make -C abi-${ABI} install DESTDIR="${D}" || die "make install for ABI ${ABI} failed." + done + + rm "${D}/usr/bin/cpsplay" # currently unsupported + + dodoc AUTHORS ChangeLog* NEWS README* TODO +} + +pkg_postinst() { + einfo "Use the following command to re-encode your screen captures to a" + einfo "file format current media players do understand:" + einfo + einfo " cpsrecode -i capture.cps -o - | mencoder - -o capture.avi \\" + einfo " -ovc lavc -lavcopts vcodec=xvid:autoaspect=1" + einfo + einfo "or if use-flag theora enabled, create your ogg/theora file inplace:" + einfo + einfo " cpsrecode -i capture.cps -o capture.ogg -c theora" + echo +} + +# vim:ai:noet:ts=4:nowrap diff --git a/media-libs/capseo/files/digest-capseo-0.3.0_pre200712251-r1 b/media-libs/capseo/files/digest-capseo-0.3.0_pre200712251-r1 new file mode 100644 index 000000000000..bce9f747eb7a --- /dev/null +++ b/media-libs/capseo/files/digest-capseo-0.3.0_pre200712251-r1 @@ -0,0 +1,3 @@ +MD5 dc68b7105778ff708cf17aadeceb4b7b captury-0.3.0_pre200712251.tar.bz2 1256351 +RMD160 0527f5f18e84ada5b37941f7f55355c20ef0fc0e captury-0.3.0_pre200712251.tar.bz2 1256351 +SHA256 119499991c8bf68632485adce7bc13ce9b754d8b406862351abe8d92e3eb5fc3 captury-0.3.0_pre200712251.tar.bz2 1256351 diff --git a/media-libs/capseo/files/no-cpsplay.diff b/media-libs/capseo/files/no-cpsplay.diff new file mode 100644 index 000000000000..13788fd7062d --- /dev/null +++ b/media-libs/capseo/files/no-cpsplay.diff @@ -0,0 +1,21 @@ +=== capseo/tools/Makefile.am +================================================================== +--- capseo/tools/Makefile.am (revision 5574) ++++ capseo/tools/Makefile.am (local) +@@ -3,13 +3,13 @@ + ANSI_CXXFLAGS = -ansi -pedantic -Wall -Wno-long-long -Wno-unknown-pragmas + AM_CXXFLAGS = $(ANSI_CXXFLAGS) $(CAPTURY_CFLAGS) -DVERSION="\"@CAPSEO_VERSION@\"" -DTHEORA=@THEORA@ + +-bin_PROGRAMS = cpsinfo cpsplay cpsrecode ++bin_PROGRAMS = cpsinfo cpsrecode + + cpsinfo_SOURCES = cpsinfo.cpp + cpsinfo_LDFLAGS = $(top_builddir)/src/libcapseo.la + +-cpsplay_SOURCES = cpsplay.cpp +-cpsplay_LDFLAGS = $(top_builddir)/src/libcapseo.la $(X11_LIBS) -lGL ++# cpsplay_SOURCES = cpsplay.cpp ++# cpsplay_LDFLAGS = $(top_builddir)/src/libcapseo.la $(X11_LIBS) -lGL + + cpsrecode_SOURCES = cpsrecode.cpp + cpsrecode_LDFLAGS = $(top_builddir)/src/libcapseo.la |