- Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi
44 lines
913 B
Makefile
44 lines
913 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libquvi
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia devel
|
|
MASTER_SITES= SF/quvi/${PORTVERSION:R}/${PORTNAME}/ \
|
|
GOOGLE_CODE
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Cross-platform library for parsing flash media stream URLs
|
|
|
|
LICENSE= LGPL21 LGPL3
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= libquvi-scripts>=0.4.0:${PORTSDIR}/multimedia/libquvi-scripts
|
|
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_LUA= yes
|
|
USE_XZ= yes
|
|
USES= pathfix pkgconfig iconv
|
|
|
|
MAN3= libquvi.3
|
|
|
|
PROJECTHOST= quvi
|
|
|
|
PORTSCOUT= limit:0.4.[0-9]*
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}/
|
|
cd ${WRKSRC}/doc/nd/ && ${COPYTREE_SHARE} . ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|