freebsd-ports/www/surf/Makefile
Pav Lucistnik 8b69884e1a - Annotate conflict between math/surf and www/surf
PR:		ports/152231
Reported by:	Kostas Blekos <eelvex@gmail.com>
2010-11-23 09:57:57 +00:00

48 lines
1.2 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
CONFLICTS= surf-1* # math/surf
# 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>