mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
7887c684ad
are the latest stable releases. * Update vala to the newest stable release 0.18.1, also update a few ports in the gtk/gnome stack. * The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles. * Remove pkg-config run depends from glib20 and freetype2. This doesn't eliminate pkg-config run dependency completely, a second phase is needed and is planned. * Support for .:run. and .:build. for USE_GNOME components was added. Currently only libxml2 and libxslt support this mechanism. * Updates of the telepathy stack and empathy. * Trim makefile headers, convert ports to new options, trim off library versions for some ports. * Fix other ports so they build with the new glib version. Thanks to miwi and crees for helping out with some exp-runs. Approved by: portmgr (miwi & bapt) Obtained from: gnome team repo
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/sysutils/gnome-system-monitor/Makefile,v 1.147 2012/10/02 15:10:10 kwm Exp $
|
|
|
|
PORTNAME= gnome-system-monitor
|
|
PORTVERSION= 2.28.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME 2 system monitor program
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme
|
|
LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \
|
|
gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24
|
|
RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme
|
|
|
|
CONFLICTS= gnome-system-monitor-3.[0-9]*
|
|
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
INSTALLS_OMF= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomeprefix intlhack gnomehack libwnck gnomevfs2 gnomedocutils \
|
|
librsvg2
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lutil
|
|
|
|
GCONF_SCHEMAS= gnome-system-monitor.schemas
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|<glib/gtypes.h>|<glib.h>|g' \
|
|
-e 's|<glib/gmacros.h>|<glib.h>|g' \
|
|
-e 's|<glib/gstring.h>|<glib.h>|g' \
|
|
${WRKSRC}/src/*.[ch] ${WRKSRC}/src/*.cpp
|
|
|
|
.include <bsd.port.mk>
|