1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/www/surf/Makefile
Beat Gaetzi ebdbb7d615 - Update to 0.4.1
- Pass maintainership to submitter

PR:		ports/150532
Submitted by:	Davide Italiano <davide.italiano AT gmail.com>
2010-09-14 19:40:50 +00:00

47 lines
1.1 KiB
Makefile

# New ports collection makefile for: surf
# Date created: December 21, 2009
# Whom: Christopher Knaust <jigboe@gmx.de>
#
# $FreeBSD$
#
PORTNAME= surf
PORTVERSION= 0.4.1
CATEGORIES= www
MASTER_SITES= http://dl.suckless.org/${PORTNAME}/
MAINTAINER= davide.italiano@gmail.com
COMMENT= A simple Web browser based on WebKit/Gtk+
LIB_DEPENDS= webkit-1.0:${PORTSDIR}/www/webkit-gtk2
RUN_DEPENDS= dmenu:${PORTSDIR}/x11/dmenu
USE_GNOME= gtk20 pkgconfig
MAN1= surf.1
PLIST_FILES= bin/surf
PORTDOCS= LICENSE README
# Name conflicts with the math/surf port
NO_LATEST_LINK= yes
pre-everything::
@${ECHO_MSG} "You can build surf with your own config.h using the SURF_CONF knob:"
@${ECHO_MSG} "make SURF_CONF=/path/to/surf/config.h install clean"
post-extract:
.if defined(SURF_CONF)
@${ECHO_MSG} "creating config.h from ${SURF_CONF}"
@${CP} ${SURF_CONF} ${WRKSRC}/config.h
.endif
post-install:
.if !defined(NOPORTDOCS)
@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
@${MKDIR} ${DOCSDIR}
@${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}
@${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>