mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
8f15230af2
it's been replaced with a doxygen config file. This unbreaks the port build when trying to build the docs.
36 lines
773 B
Makefile
36 lines
773 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libdvdcss
|
|
PORTVERSION= 1.2.13
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://download.videolan.org/pub/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= jpaetzel@FreeBSD.org
|
|
COMMENT= Portable abstraction library for DVD decryption
|
|
|
|
RESTRICTED= CSS code may violate the DMCA
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USES= gmake libtool pathfix tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOXYGEN
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOXYGEN}
|
|
BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOXYGEN}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${INSTALL_WRKSRC}/doc/html/* ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|