47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.12 2017/05/07 07:31:14 jasper Exp $
|
|
|
|
COMMENT= little and fast Web crawler
|
|
|
|
DISTNAME= larbin-2.6.3
|
|
REVISION= 1
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://larbin.sourceforge.net/index-eng.html
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += adns>=1 c m pthread ${LIBCXX}
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=larbin/}
|
|
|
|
LIB_DEPENDS= net/adns
|
|
|
|
CONFIGURE_STYLE= simple
|
|
CONFIGURE_ENV= CC="${CC}" MAKE=${MAKE_PROGRAM}
|
|
MAKE_ENV= CC="${CC}" CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
|
|
NO_TEST= Yes
|
|
|
|
# uses makedepend
|
|
USE_X11 = Yes
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/src/global.cc
|
|
# Now fixup some C++ constructs not supported by clang
|
|
find ${WRKSRC}/src -name '*.cc' -or -name '*.h' | xargs \
|
|
sed -i -e 's|<iostream.h>|<iostream>| ; \
|
|
s|<string.h>|<cstring>| ; \
|
|
s|\([[:blank:]]\)cerr|\1std::cerr|g ; \
|
|
s|\([[:blank:]]\)cout|\1std::cout|g ; \
|
|
s|\([[:blank:]]\)endl|\1std::endl|g'
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/larbin ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/larbin
|
|
${INSTALL_DATA} ${WRKSRC}/larbin.conf \
|
|
${PREFIX}/share/examples/larbin/larbin.conf.sample
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/larbin
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/larbin
|
|
|
|
.include <bsd.port.mk>
|