diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-09-25 22:29:05 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-09-25 22:29:05 +0000 |
commit | 79ba1514357cf278fff5854596084e53f31b3474 (patch) | |
tree | 24c8be7a667f53320247874ce4d16da50bc3d94f /media-video | |
parent | Version bump. (diff) | |
download | gentoo-2-79ba1514357cf278fff5854596084e53f31b3474.tar.gz gentoo-2-79ba1514357cf278fff5854596084e53f31b3474.tar.bz2 gentoo-2-79ba1514357cf278fff5854596084e53f31b3474.zip |
bump the 1.1 branch too, drop flag messing and hope to get feedback so that we can fix the real bugs instead; readd postproc and imagemagick switches, they should be fine now
(Portage version: 2.2_rc9/cvs/Linux 2.6.26.5 x86_64)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/transcode/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/transcode/transcode-1.1.0_rc1.ebuild | 119 |
2 files changed, 128 insertions, 1 deletions
diff --git a/media-video/transcode/ChangeLog b/media-video/transcode/ChangeLog index f2cc2b42d23f..2c371ca36f3a 100644 --- a/media-video/transcode/ChangeLog +++ b/media-video/transcode/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for media-video/transcode # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.230 2008/09/25 22:04:37 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.231 2008/09/25 22:29:05 aballier Exp $ + +*transcode-1.1.0_rc1 (25 Sep 2008) + + 25 Sep 2008; Alexis Ballier <aballier@gentoo.org> + +transcode-1.1.0_rc1.ebuild: + bump the 1.1 branch too, drop flag messing and hope to get feedback so + that we can fix the real bugs instead; readd postproc and imagemagick + switches, they should be fine now *transcode-1.0.7_rc1 (25 Sep 2008) diff --git a/media-video/transcode/transcode-1.1.0_rc1.ebuild b/media-video/transcode/transcode-1.1.0_rc1.ebuild new file mode 100644 index 000000000000..5e5589545cc4 --- /dev/null +++ b/media-video/transcode/transcode-1.1.0_rc1.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.0_rc1.ebuild,v 1.1 2008/09/25 22:29:05 aballier Exp $ + +WANT_AUTOCONF="2.5" +WANT_AUTOMAKE="1.10" + +inherit libtool flag-o-matic eutils multilib autotools + +MY_P=${P/_} +S=${WORKDIR}/${MY_P} +DESCRIPTION="video stream processing tool" +HOMEPAGE="http://www.transcoding.org/cgi-bin/transcode" +SRC_URI="http://fromani.exit1.org/${MY_P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="X 3dnow a52 aac alsa altivec dv dvdread iconv imagemagick jpeg lzo mjpeg mp3 mmx nuv ogg oss postproc quicktime sdl sse sse2 theora truetype v4l2 vorbis x264 xvid xml" + +RDEPEND="a52? ( media-libs/a52dec ) + alsa? ( media-libs/alsa-lib ) + dv? ( media-libs/libdv ) + dvdread? ( media-libs/libdvdread ) + xvid? ( media-libs/xvid ) + mjpeg? ( media-video/mjpegtools ) + lzo? ( >=dev-libs/lzo-2 ) + imagemagick? ( media-gfx/imagemagick ) + mp3? ( media-sound/lame ) + sdl? ( media-libs/libsdl ) + quicktime? ( >=media-libs/libquicktime-1.0.0 ) + vorbis? ( media-libs/libvorbis ) + ogg? ( media-libs/libogg ) + theora? ( media-libs/libtheora ) + jpeg? ( media-libs/jpeg ) + truetype? ( >=media-libs/freetype-2 ) + >=media-video/ffmpeg-0.4.9_p20080326 + || ( sys-libs/glibc dev-libs/libiconv ) + media-libs/libmpeg2 + x264? ( media-libs/x264 ) + xml? ( dev-libs/libxml2 ) + X? ( x11-libs/libXpm + x11-libs/libXaw + x11-libs/libXv )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + v4l2? ( >=sys-kernel/linux-headers-2.6.11 )" +# Make sure the assembler USE flags are unmasked on amd64 +# Remove this once default-linux/amd64/2006.1 is deprecated +DEPEND="${DEPEND} amd64? ( >=sys-apps/portage-2.1.2 )" + +pkg_setup() { + if use X && ! built_with_use media-libs/libsdl X; then + eerror "media-libs/libsdl must be built with the X use flag." + die "fix use flags" + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + + dosed -i -e "s:\$(datadir)/doc/transcode:\$(datadir)/doc/${PF}:" \ + "${S}"/Makefile.am "${S}"/docs/Makefile.am "${S}"/docs/html/Makefile.am \ + "${S}"/docs/release-notes/Makefile.am + + eautoreconf +} + +src_compile() { + use xvid && myconf="${myconf} --with-default-xvid=xvid4" + # NuppelVideo is supported only on x86 platform yet + # TODO: mask nuv useflag for all other arches + use x86 && myconf="${myconf} $(use_enable nuv)" + myconf="${myconf} \ + $(use_enable mmx) \ + $(use_enable 3dnow) \ + $(use_enable sse) \ + $(use_enable sse2) \ + $(use_enable altivec) \ + $(use_enable v4l2 v4l) \ + $(use_enable alsa) \ + $(use_enable oss) \ + $(use_enable truetype freetype2) \ + $(use_enable mp3 lame) \ + $(use_enable x264) \ + $(use_enable xvid) \ + $(use_enable ogg) \ + $(use_enable vorbis) \ + $(use_enable theora) \ + $(use_enable dvdread libdvdread) \ + $(use_enable dv libdv) \ + $(use_enable quicktime libquicktime) \ + $(use_enable imagemagick) \ + $(use_enable postproc libpostproc) \ + $(use_enable lzo) \ + $(use_enable a52) \ + $(use_enable aac faac) \ + $(use_enable xml libxml2) \ + $(use_enable mjpeg mjpegtools) \ + $(use_enable sdl) \ + $(use_enable jpeg libjpeg) \ + $(use_enable iconv) \ + $(use_with X x) \ + --with-mod-path=/usr/$(get_libdir)/transcode" + + econf ${myconf} || die "econf failed" + + emake all || die "emake all failed" +} + +src_install () { + make DESTDIR="${D}" install || die "make install failed" + rm -fr "${D}/usr/share/doc/transcode" + + dodoc AUTHORS ChangeLog README TODO STYLE + dodoc docs/* + dohtml docs/html/* +} |