mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
0bd7705701
Changes this release: - https://sourceforge.net/p/etherape/etherape/ci/rel-0.9.18/tree/NEWS - Notably with this release EtherApe is now a pure GTK 3 application
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# Created by: Holger Lamm <holger@eit.uni-kl.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= etherape
|
|
PORTVERSION= 0.9.18
|
|
CATEGORIES= net-mgmt gnome
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= woodsb02@FreeBSD.org
|
|
COMMENT= Graphical network traffic monitor tool modeled after Etherman
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= itstool:textproc/itstool \
|
|
yelp-tools>=0:textproc/yelp-tools
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libgoocanvas-2.0.so:graphics/goocanvas2 \
|
|
libpopt.so:devel/popt
|
|
|
|
USES= gettext gmake gnome iconv localbase pathfix pkgconfig
|
|
USE_GNOME= atk cairo gdkpixbuf2 gtk30 pango
|
|
|
|
GNU_CONFIGURE= yes
|
|
PORTDOCS= AUTHORS ChangeLog FAQ NEWS README README.bugs TODO
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|char \*argv)|char **argv)|' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e \
|
|
's|__EXPORT__|__EXPORT_H__|' ${WRKSRC}/src/export.h
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|