mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
EXPIRATION_DATE at the end of April 2017. In the past six months, about a third of the ports marked BROKEN because they were hosted on Google Code have been fixed. The remaining must not be of use to anyone. With hat: portmgr Sponsored by: Absolight
39 lines
925 B
Makefile
39 lines
925 B
Makefile
# Created by: HU Dong <itechbear@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= streamhtmlparser
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= itechbear@gmail.com
|
|
COMMENT= C/C++/Python streaming HTML parser library from Google
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
DEPRECATED= Unfetchable for more than six months (google code has gone away)
|
|
EXPIRATION_DATE= 2017-04-30
|
|
|
|
USES= gmake
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS+=--enable-shared
|
|
|
|
OPTIONS_DEFINE= DOCS STATIC PYBINDINGS
|
|
PYBINDINGS_DESC=Install Python bindings
|
|
STATIC_DESC= Install static library
|
|
OPTIONS_DEFAULT=STATIC
|
|
OPTIONS_SUB= yes
|
|
|
|
PYBINDINGS_USES= python
|
|
PYBINDINGS_CONFIGURE_ENABLE= python
|
|
PYBINDINGS_CFLAGS= -I${PYTHON_INCLUDEDIR}
|
|
|
|
STATIC_CONFIGURE_ENABLE= static
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^docdir.*|docdir = ${DOCSDIR}|' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|