mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +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
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/sysutils/nautilus-cd-burner/Makefile,v 1.149 2009/09/25 18:40:01 kwm Exp $
|
|
|
|
PORTNAME= nautilus-cd-burner
|
|
PORTVERSION= 2.24.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= sysutils gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= CD burner view for Nautilus
|
|
|
|
BUILD_DEPENDS= gnome-mount:${PORTSDIR}/sysutils/gnome-mount
|
|
RUN_DEPENDS= gnome-mount:${PORTSDIR}/sysutils/gnome-mount \
|
|
cdrdao:${PORTSDIR}/sysutils/cdrdao
|
|
|
|
CONFIGURE_ARGS= --enable-gnome-mount
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
GNOME_DESKTOP_VERSION=2
|
|
USE_GNOME= gnomeprefix gnomehack intlhack nautilus2 ltverhack \
|
|
desktopfileutils ltasneededhack eel2 libgnomeui
|
|
USE_CDRTOOLS= yes
|
|
INSTALLS_ICONS= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
GCONF_SCHEMAS= nautilus-cd-burner.schemas
|
|
|
|
OPTIONS_DEFINE= DVD
|
|
OPTIONS_DEFAULT=DVD
|
|
DVD_DESC= DVD support
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDVD}
|
|
RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|glib/g.*\.h>|glib.h>|g' \
|
|
${WRKSRC}/src/nautilus-burn.h \
|
|
${WRKSRC}/src/nautilus-burn-init.h \
|
|
${WRKSRC}/src/nautilus-cd-burner.h
|
|
|
|
post-install:
|
|
-@update-desktop-database
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|