* ./test/csstest.c: we align our read buffer in case of raw device access. * ./src/libdvdcss.c: updated documentation about raw devices. * ./src/libdvdcss.c: disabled key cache when reading VOBs. * ./src/ioctl.c, ./src/ioctl.h: removed minor gcc-isms. * ./src/device.c: seek() calls don't do anything if we're already at the right position. * ./src/device.c: we now handle partial reads. * ./src/device.c: dvdcss->i_pos now gets updated on each seek and each read. Partial reads are not handled yet, but it's a step. * ALL: moved everything to C99 integer types. * ./test/dvd_region.c: enabled set_region. * ./src/css.c, ./src/libdvdcss.c: applied a patch from the MPlayer folks to cache title keys on disk. * ./src/ioctl.[ch]: Implemented ioctl_SendRPC. [Some changes that don't apply to NetBSD elided.]
31 lines
918 B
Makefile
31 lines
918 B
Makefile
# $NetBSD: Makefile,v 1.4 2003/02/21 11:44:21 mycroft Exp $
|
|
#
|
|
# Unfortunately, some reading of the United States law (DMCA) means
|
|
# that we are not able to provide pointers to the source or homepage
|
|
# for this software, even in other countries.
|
|
#
|
|
# Please do not submit any PRs telling us the contents of the HOMEPAGE
|
|
# or MASTER_SITES definitions in this Makefile.
|
|
|
|
DISTNAME= libdvdcss-1.2.5
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${LIBDVDCSS_MASTER_SITES}
|
|
|
|
MAINTAINER= marc@informatik.uni-bremen.de
|
|
HOMEPAGE= ${LIBDVDCSS_HOMEPAGE}
|
|
COMMENT= simple library designed for accessing DVDs
|
|
|
|
RESTRICTED= Legal problems due to css code
|
|
|
|
# no source because of the css source code in it
|
|
NO_SRC_ON_FTP= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
|
|
USE_BUILDLINK2= YES
|
|
USE_LIBTOOL= YES
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
GNU_CONFIGURE= YES
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|