and new features. Don't believe me? Then see for yourself at http://www.gnome.org/start/2.12/notes/en/. DO NOT USE portupgrade by itself to upgrade to GNOME 2.12. Instead, use the gnome_upgrade.sh script from http://www.marcuscom.com/downloads/gnome_upgrade212.sh. This script will circumvent some potential pitfalls users can see if they use portupgrade by itself. In keeping with tradition, GNOME 2.12 for FreeBSD comes with a special splash screen. The winner of this release's contest is Dominique Goncalves <dominique.goncalves@gmail.com>. His splash screen was inspired by http://art.gnome.org/contests/2.12-splash/83. The FreeBSD GNOME Team would lank to thank the following users for their contributions to this release: Matthew Luckie <mjl@luckie.org.nz> ade sajd on #freebsd-gnome Caelian on #freebsd-gnome mnag Yasuda Keisuke <kysd@po.harenet.ne.jp> Mark Hobden <markhobden@gmail.com> Sergey Akifyev <asa@agava.com> Andreas Kohn For more information on GNOME on FreeBSD, checkout http://www.FreeBSD.org/gnome/. The 2.12 documentation will be posted shortly.
92 lines
2.5 KiB
Makefile
92 lines
2.5 KiB
Makefile
# New ports collection makefile for: gnomevfs2
|
|
# Date created: 28th June 2000
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/gnomevfs2/Makefile,v 1.115 2005/10/31 00:12:01 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= gnomevfs2
|
|
PORTVERSION= 2.12.1.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/gnome-vfs/2.12
|
|
DISTNAME= gnome-vfs-${PORTVERSION}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME Virtual File System
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnomeprefix gnomehack intlhack gnomemimedata gconf2 \
|
|
libbonobo ltverhack
|
|
USE_REINPLACE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --enable-openssl \
|
|
--disable-gnutls
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
|
|
BSD_PTHREAD_LIBS=${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 \
|
|
system_storage.schemas
|
|
|
|
OPTIONS= SAMBA "Enable SMB volume support" on \
|
|
MDNS "Enable Bonjour/Rendezvous 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_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+= howl:${PORTSDIR}/net/howl
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-howl
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/libgnomevfs/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \
|
|
s|%%X11BASE%%|${X11BASE}|g' \
|
|
${WRKSRC}/libgnomevfs/xdgmime.c
|
|
@${SED} -e 's|%%X11BASE%%|${X11BASE}|g' \
|
|
< ${MASTERDIR}/pkg-install.in > ${PKGINSTALL}
|
|
@${SED} -e 's|%%X11BASE%%|${X11BASE}|g' \
|
|
< ${MASTERDIR}/pkg-deinstall.in > ${PKGDEINSTALL}
|
|
|
|
pre-configure:
|
|
@if [ -n "`${PKG_INFO} -xI '^bind[0-9]*-base-[0-9]' 2> /dev/null`" ]; then \
|
|
${ECHO_CMD} "${PKGNAME}: bind installed with PORT_REPLACES_BASE_BIND causes build problems."; \
|
|
${FALSE}; \
|
|
fi
|
|
|
|
post-install:
|
|
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.post.mk>
|