Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 119061 Details for
Bug 126994
media-video/any2dvd (new ebuild)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
any2dvd-0.34-r2.ebuild
any2dvd-0.34.ebuild (text/plain), 4.51 KB, created by
Christopher Byrne
on 2007-05-13 03:56:36 UTC
(
hide
)
Description:
any2dvd-0.34-r2.ebuild
Filename:
MIME Type:
Creator:
Christopher Byrne
Created:
2007-05-13 03:56:36 UTC
Size:
4.51 KB
patch
obsolete
>inherit eutils > >DESCRIPTION="Tool to transform PC multimedia file(s) in any format, into a DVD complete with menus & suitable for playback on a standalone DVD player" >HOMEPAGE="http://any2dvd.sourceforge.net" > >SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" > >LICENSE="GPL-2" >SLOT="0" >KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" >IUSE="dv matroska mpegts mythtv ogg pcm X win32codecs real" > >DEPEND=">=app-arch/sharutils-4.2.1 > >=net-misc/wget-1.9.1 > media-fonts/gnu-gs-fonts-std > media-fonts/gnu-gs-fonts-other > >=media-video/ffmpeg-0.4.9_p20061016 > >=media-video/transcode-1.0.2 > >=media-gfx/imagemagick-6.2.5.5 > >=media-video/dvdauthor-0.6.11 > >=app-cdr/dvd+rw-tools-6.1 > >=media-video/mplayer-1.0_pre8 > >=media-video/mpgtx-1.3.1 > >=media-video/mjpegtools-1.6.2 > >=media-libs/a52dec-0.7.4 > >=media-libs/libdts-0.0.2 > >=media-libs/libsndfile-1.0.11 > >=media-sound/ecasound-2.4.1 > >=media-sound/multimux-0.2.3 > >=media-libs/libsoundtouch-1.3.0 > dv? ( >=media-libs/libdv-1.0.0 ) > matroska? ( >=media-video/mkvtoolnix-1.4.2 ) > mpegts? ( >=media-video/replex-0.1.4 ) > mythtv? ( >=media-tv/mythtv-0.18.1 ) > ogg? ( >=media-sound/ogmtools-1.5 ) > pcm? ( >=media-sound/wav2lpcm-0.1 ) > X? ( >=x11-misc/xbindkeys-1.7.3 )" > >RDEPEND="${DEPEND}" > >src_unpack() { > unpack "${A}" > cd "${S}" > epatch "${FILESDIR}/${P}-df-6column.patch" > epatch "${FILESDIR}/${P}-ffmpeg-ab-k.patch" > epatch "${FILESDIR}/${P}-frames0.patch" >} > >pkg_setup() { > if use dv; then > if ! built_with_use media-video/transcode dv; then > eerror "Transcode is missing 'dv' support. Please add" > eerror "'dv' to your USE flags, and re-emerge media-video/transcode" > die "Transcode needs dv support" > fi > > if ! built_with_use media-video/mjpegtools dv; then > eerror "Mjpegtools is missing 'dv' support. Please add" > eerror "'dv' to your USE flags, and re-emerge media-video/mjpegtools" > die "Mjpegtools needs dv support" > fi > fi > > ## FFmpeg dependencies ## > if ! built_with_use media-video/ffmpeg {a52,aac,dts,encode}; then > eerror "FFmpeg is missing 'a52,aac,dts and encode' support. Please add" > eerror "'a52,aac,dts and encode' to your USE flags, and re-emerge media-video/ffmpeg" > die "FFmpeg needs 'a52,aac,dts and encode' support" > fi > > ## Transcode dependencies ## > if ! built_with_use media-video/transcode {a52,mjpeg,mp3,mpeg,xvid}; then > eerror "Transcode is missing 'a52,mjpeg,mp3,mpeg and xvid' support. Please add" > eerror "'a52,mjpeg,mp3,mpeg and xvid' to your USE flags, and re-emerge media-video/transcode" > die "Transcode needs 'a52,mjpeg,mp3,mpeg and xvid' support" > fi > > ## Imagemagick dependencies ## > if ! built_with_use media-gfx/imagemagick {jpeg,png}; then > eerror "Imagemagick is missing 'jpeg and png' support. Please add" > eerror "'jpeg and png' to your USE flags, and re-emerge media-gfx/imagemagick" > die "Imagemagick needs 'jpeg and png' support" > fi > > ## Mjpegtools dependencies ## > if ! built_with_use media-video/mjpegtools png; then > eerror "Mjpegtools is missing 'png' support. Please add" > eerror "'png' to your USE flags, and re-emerge media-video/mjpegtools" > die "Mjpegtools needs png support" > fi > > ## MPlayer dependencies ## > if ! built_with_use media-video/mplayer {aac,dts,dv,encode,jpeg,mad,png,vorbis,x264}; then > eerror "Mplayer is missing 'aac,dts,dv,encode,jpeg,mad,png,vorbis and x264' support. Please add" > eerror "'aac,dts,dv,encode,jpeg,mad,png,vorbis and x264' to your USE flags, and re-emerge media-video/mplayer" > die "Mplayer needs 'aac,dts,dv,encode,jpeg,mad,png,vorbis and x264' support" > fi > if use real && ! built_with_use media-video/mplayer real; then > eerror "MPlayer is missing RealPlayer support, but USE=real is enabled." > eerror "Mplayer must either be re-emerged with USE=real or re-emerge this eubild" > eerror "without USE=real." > eerror "Note installing RealPlayer may require a full X11 installation (depending on the arch)." > die "RealPlayer support unavaiable and USE=real set" > fi > if use win32codecs; then > if use amd64 || use ia64; then > ewarn "'win32codecs' may cause binary incompatibilities on some 64-bit systems." > fi > if ! built_with_use media-video/mplayer win32codecs; then > eerror "MPlayer is missing win32codecs support, but USE=win32codecs is enabled." > eerror "Mplayer must either be re-emerged with USE=win32codecs or re-emerge this eubild without USE=win32codecs." > die "win32codecs support unavaiable and USE=win32codecs set" > fi > fi >} > >src_install() { > dobin any2vob any2dvd any2windows_video > doman any2vob.1 any2dvd.1 > dodoc Changelog-any2dvd Changelog-any2vob DISCLAIMER LICENSE TODO >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 126994
:
82700
|
82701
|
86200
|
96952
|
98194
|
98898
|
98899
|
112896
|
117195
|
117196
|
117197
|
119059
| 119061 |
120356
|
120362
|
120364
|
130998
|
132266
|
132273
|
132275
|
133720
|
133778
|
133779
|
133780
|
133783
|
133784
|
133785
|
134614
|
135893
|
141926
|
145014
|
159819
|
159820
|
159822