43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.25 2010/11/22 08:36:54 espie Exp $
|
|
|
|
COMMENT = command line interface to popular WWW search engines
|
|
|
|
DISTNAME = surfraw-2.2.7
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = http://surfraw.alioth.debian.org/
|
|
|
|
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/dist/
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
USE_GMAKE = yes
|
|
USE_GROFF = Yes
|
|
|
|
pre-configure:
|
|
@perl -pi -e 's,\.(1sr|1)\.gz,.1,g' ${WRKSRC}/links.IN
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/elvi.1sr ${PREFIX}/man/man1/elvi.1
|
|
${INSTALL_MAN} ${WRKSRC}/surfraw.1 ${PREFIX}/man/man1/surfraw.1
|
|
${INSTALL_MAN} ${WRKSRC}/surfraw.1 ${PREFIX}/man/man1/sr.1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/surfraw
|
|
${INSTALL_DATA} ${WRKSRC}/surfraw.conf ${WRKSRC}/surfraw.bookmarks \
|
|
${PREFIX}/share/examples/surfraw
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/surfraw
|
|
${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/HACKING \
|
|
${PREFIX}/share/doc/surfraw
|
|
|
|
REGRESS_DEPENDS = www/p5-libwww \
|
|
www/surfraw
|
|
REGRESS_TARGET = test
|
|
|
|
.include <bsd.port.mk>
|