Files
haikuports/media-libs/libdv/libdv-1.0.0.recipe
Humdinger 48285a434f De-lint recipes.
*	arm_none_eabi_newlib
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.
	Added REQUIRES and BUILD_REQUIRES.

*	avrdude
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	bafx
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.
	Added REQUIRES.

*	becasso
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.
	Added REQUIRES.

*	becjk
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	bmake
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	cmake_haiku
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	coveredcalc
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	curl
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	dejavu
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	dfu-programmer
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	exiv2
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	festival
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	fxload
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	geos
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	gsl
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	lato_fonts
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	libabw
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	libcaca
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	libcdr
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	libdv
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	libebook
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.

*	libetonyek
	Removed e-mail from COPYRIGHT.
	Re-ordered blocks.
2015-08-02 19:42:51 +02:00

76 lines
1.8 KiB
Bash

SUMMARY="A GPL codec for DV video"
DESCRIPTION="The Quasar DV codec (libdv) is a software codec for DV video, \
the encoding format used by most digital camcorders, typically those that \
support the IEEE 1394 (a.k.a FireWire or i.Link) interface. Libdv was \
developed according to the official standards for DV video: IEC 61834 and \
SMPTE 314M."
HOMEPAGE="http://libdv.sourceforge.net"
COPYRIGHT="1999 Erik Walthinsen
1999 Charles 'Buck' Krasic"
LICENSE="GNU LGPL v2.1"
REVISION="2"
SOURCE_URI="http://sourceforge.net/projects/libdv/files/libdv/$portVersion/libdv-$portVersion.tar.gz"
CHECKSUM_SHA256="a305734033a9c25541a59e8dd1c254409953269ea7c710c39e540bd8853389ba"
PATCHES="libdv-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libdv$secondaryArchSuffix = $portVersion compat >= 1.0
lib:libdv$secondaryArchSuffix = 4.0.3 compat >= 4
cmd:dubdv$secondaryArchSuffix
cmd:encodedv$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libsdl_1.2$secondaryArchSuffix
lib:libpopt$secondaryArchSuffix
"
PROVIDES_devel="
libdv${secondaryArchSuffix}_devel = $portVersion compat >= 1.0
devel:libdv$secondaryArchSuffix = 4.0.3 compat >= 4
"
REQUIRES_devel="
libdv$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libsdl_1.2$secondaryArchSuffix
devel:libpopt${secondaryArchSuffix}
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize
cmd:make
"
BUILD()
{
libtoolize --force --copy --install
aclocal
autoconf
automake
runConfigure ./configure --disable-gtk \
--without-debug
make $jobArgs
}
INSTALL()
{
make install
prepareInstalledDevelLibs libdv
fixPkgconfig
# devel package
packageEntries devel \
$developDir
}