3680f27ebf
release can be found at http://library.gnome.org/misc/release-notes/2.32/ This will be the last release of the GNOME 2.x series, mainly a bugfix and bridge release to the first release of the GNOME 3.x series. This release features commits by avl, marcus, mezz and myself. The FreeBSD GNOME Team would like to thank the following contributors and testers for there help with this release: Zane C.B. <vvelox@vvelox.net> romain@ Olaf Seibert <O.Seibert@cs.ru.nl> DomiX Bapt <baptiste.daroussin@gmail.com> jsa@ miwi@ Sergio de Almeida Lenzi <lenzi.sergio@gmail.com> Maxim Samsonov <xors@mne.ru> Kris Moore And pav@ for 2 exp-runs PR: ports/152255 ports/143260 ports/141033 ports/149629 ports/150350 ports/151523 With hat: gnome@
109 lines
2.9 KiB
Makefile
109 lines
2.9 KiB
Makefile
# New ports collection makefile for: gnomevfs2
|
|
# Date created: 28th June 2000
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/gnome-vfs/Makefile,v 1.191 2010/09/29 12:30:29 kwm Exp $
|
|
#
|
|
|
|
PORTNAME= gnome-vfs
|
|
PORTVERSION= 2.24.4
|
|
PORTREVISION?= 0
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME Virtual File System
|
|
|
|
USE_BZIP2= yes
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info
|
|
|
|
USE_GMAKE= yes
|
|
USE_GETTEXT= yes
|
|
USE_GNOME= gnomeprefix gnomehack intlhack gnomemimedata gconf2 \
|
|
ltverhack referencehack
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_OPENSSL= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --enable-openssl \
|
|
--disable-gnutls \
|
|
--disable-howl \
|
|
--with-hal-mount=/sbin/mount \
|
|
--with-hal-umount=/sbin/umount
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include -DPTHREAD_LIB=\"${PTHREAD_LIBS}\""
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
|
|
|
|
GCONF_SCHEMAS= desktop_default_applications.schemas \
|
|
desktop_gnome_url_handlers.schemas system_dns_sd.schemas \
|
|
system_http_proxy.schemas system_smb.schemas
|
|
|
|
OPTIONS= SAMBA "Enable SMB volume support" on \
|
|
MDNS "Enable Bonjour/Rendezvous support" on \
|
|
HAL "Enable HAL support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${LOCALBASE}/lib/libfam.so) || !defined(WITHOUT_FAM)
|
|
USE_FAM= yes
|
|
.endif
|
|
|
|
.if exists(${LOCALBASE}/lib/libkrb5.so)
|
|
LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_HAL)
|
|
CONFIGURE_ARGS+=--enable-hal
|
|
LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-hal
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_SAMBA)
|
|
LIB_DEPENDS+= smbclient.0:${PORTSDIR}/net/samba-libsmbclient
|
|
PLIST_SUB+= SAMBA=""
|
|
.else
|
|
PLIST_SUB+= SAMBA="@comment "
|
|
CONFIGURE_ARGS+=--disable-samba
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_MDNS)
|
|
LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-avahi
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|@PTHREAD_LIB@|${PTHREAD_LIBS}|' \
|
|
${WRKSRC}/gnome-vfs-2.0.pc.in ${WRKSRC}/gnome-vfs-module-2.0.pc.in
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/libgnomevfs/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \
|
|
s|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${WRKSRC}/libgnomevfs/xdgmime.c \
|
|
${WRKSRC}/libgnomevfs/gnome-vfs-hal-mounts.c
|
|
@${REINPLACE_CMD} -e 's|-lacl||g' \
|
|
${WRKSRC}/configure
|
|
@${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
< ${MASTERDIR}/pkg-install.in > ${PKGINSTALL}
|
|
@${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
< ${MASTERDIR}/pkg-deinstall.in > ${PKGDEINSTALL}
|
|
|
|
pre-configure:
|
|
.if defined(WITHOUT_KERBEROS)
|
|
@${ECHO_CMD} "${PKGNAME}: KERBEROS is required."
|
|
@${FALSE}
|
|
.endif
|
|
|
|
post-install:
|
|
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.post.mk>
|
|
|
|
.endif
|