mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
83 lines
2.0 KiB
Bash
83 lines
2.0 KiB
Bash
SUMMARY="A simple foundation for reading DVD video disks"
|
|
DESCRIPTION="libdvdread provides the functionality that is required to \
|
|
access many DVDs. It parses IFO files, reads NAV-blocks, and performs CSS \
|
|
authentication and descrambling (if an external libdvdcss library is \
|
|
installed)."
|
|
HOMEPAGE="https://www.videolan.org/developers/libdvdnav.html"
|
|
COPYRIGHT="1998-1999 Eric Smith
|
|
2000-2002 Björn Englund
|
|
2000-2003 Håkan Hjort, et al."
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://download.videolan.org/pub/videolan/libdvdread/$portVersion/libdvdread-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="28ce4f0063883ca4d37dfd40a2f6685503d679bca7d88d58e04ee8112382d5bd"
|
|
PATCHES="libdvdread-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
libVersion="4.2.0"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
|
|
PROVIDES="
|
|
libdvdread$secondaryArchSuffix = $portVersion
|
|
lib:libdvdread$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libdvdread${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libdvdread$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES_devel="
|
|
libdvdread$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libdvdcss$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoreconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
defineDebugInfoPackage libdvdread$secondaryArchSuffix \
|
|
"$libDir"/libdvdread.so.$libVersion
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure --enable-shared --enable-static \
|
|
--disable-maintainer-mode
|
|
touch ChangeLog
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/libdvdread.la
|
|
|
|
# prepare develop/lib
|
|
prepareInstalledDevelLibs libdvdread
|
|
fixPkgconfig
|
|
|
|
packageEntries devel \
|
|
"$docDir"/{AUTHORS,ChangeLog,NEWS,TODO} \
|
|
$developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|