1SUMMARY="A tool to easily extract MPEG streams from VCD images"
2DESCRIPTION="VCDGear is a tool written to effortlessly extract MPEG streams \
3from CD images, convert VideoCD files to MPEG, correct MPEG errors, create \
4(Super)VideoCDs and more!
5
6Anyone requiring the need to transport their video materials will find \
7VCDGear as a useful tool to assist them in getting the video to play on their \
8computer or VideoCD player.
9
10Some of the features you will find in VCDGear are:
11
12* MPEG stream extractions from popular CD images
13* On the fly MPEG correction to fix certain types of MPEG errors
14* Super VideoCD and VideoCD image creation"
15HOMEPAGE="http://www.vcdgear.com"
16COPYRIGHT="2000 Dracore
17	Be-NiB"
18LICENSE="MIT"
19REVISION="1"
20# Looks like we need the cmd from version 1.1 but also the add-on from version 1.0.1
21SOURCE_URI="http://www.vcdgear.com/files/VCDGear_1.1_beos5.zip"
22CHECKSUM_SHA256="21e91fc079e1a7db4c453dd72f92d978eb444f5fc7d09f091bb9834dc8c6c778"
23SOURCE_DIR="VCDGear"
24SOURCE_URI_2="http://www.vcdgear.com/files/VCDGear_f_Be_R5_101.zip"
25CHECKSUM_SHA256_2="a880196b29ca6c2df27c4192c33b0c2de59ceb963c399457af8736aaf1ba4f0c"
26SOURCE_DIR_2="VCDGear_for_BeOS_R5_v1.0.1"
27
28ARCHITECTURES="!all x86_gcc2"
29DISABLE_SOURCE_PACKAGE="yes"
30
31PROVIDES="
32	vcdgear = $portVersion
33	add_on:vcd_fs
34	cmd:VCDGear
35	"
36REQUIRES="
37	haiku
38	"
39
40INSTALL()
41{
42	mkdir -p $binDir $docDir
43	cp -f changes $docDir
44	cp -f readme $docDir/
45	cp -f VCDGear $binDir
46	chmod +x $binDir/VCDGear
47
48	#This is from version 1.0.1
49	#Below is an experimental filesystem that can read video cds(not DVD)
50	#This is an addon from the Relase 4.5.2 CD ROM.
51	#This binary doesn��t work for me on R5 but you
52	#can also try to work with it (from the readme file for vcd_fs)
53
54	mkdir -p $addOnsDir/kernel/file_systems
55	cp -f $sourceDir2/readme.html $docDir
56	cp $sourceDir2/video_cd/vcd_fs $addOnsDir/kernel/file_systems
57	chmod +x $addOnsDir/kernel/file_systems/vcd_fs
58}
59