diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-10-24 04:36:24 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-10-24 04:36:24 +0800 |
commit | 97111995648493d9d5116a04a08f8aa8d38ab0c9 (patch) | |
tree | 858de3c0d09b4e819fd226bbb8028ddc3ee5ea61 /devel/gnomevfs2/Makefile | |
parent | f943b38abd1072f4cef65d47e7909d66a224f0e6 (diff) | |
download | marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.tar marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.tar.gz marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.tar.bz2 marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.tar.lz marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.tar.xz marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.tar.zst marcuscom-ports-97111995648493d9d5116a04a08f8aa8d38ab0c9.zip |
Update to 2.5.0.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1289 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnomevfs2/Makefile')
-rw-r--r-- | devel/gnomevfs2/Makefile | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/devel/gnomevfs2/Makefile b/devel/gnomevfs2/Makefile new file mode 100644 index 000000000..000704c05 --- /dev/null +++ b/devel/gnomevfs2/Makefile @@ -0,0 +1,58 @@ +# New ports collection makefile for: gnomevfs2 +# Date created: 28th June 2000 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD: ports/devel/gnomevfs2/Makefile,v 1.69 2003/10/18 23:15:49 marcus Exp $ +# + +PORTNAME= gnomevfs2 +PORTVERSION= 2.5.0.1 +CATEGORIES= devel gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/gnome-vfs/2.5 +DISTNAME= gnome-vfs-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GNOME Virtual File System + +USE_BZIP2= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_GNOME= gnomeprefix gnomehack gnomehier gnomemimedata gconf2 libbonobo +USE_REINPLACE= yes +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes +CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ + BSD_PTHREAD_LIBS=${PTHREAD_LIBS} + +.include <bsd.port.pre.mk> + +.if exists(${LOCALBASE}/lib/libcdda_paranoia.a) +WITH_CDPARANOIA= yes +.endif +.if exists(${LOCALBASE}/lib/libfam.a) +WITH_FAM= yes +.endif + +.if defined(WITH_CDPARANOIA) +LIB_DEPENDS+= cdda_paranoia.0:${PORTSDIR}/audio/cdparanoia +PLIST_SUB+= CDPARANOIA="" +.else +PLIST_SUB+= CDPARANOIA="@comment " +.endif +.if defined(WITH_FAM) +LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam +.endif + +post-patch: + @${FIND} ${WRKSRC} -name "*info.in" | xargs ${REINPLACE_CMD} -e \ + 's|\@datadir\@/gnome|\@datadir\@|g' + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + ${WRKSRC}/libgnomevfs/Makefile.in \ + ${WRKSRC}/modules/vfolder/applications-all-users.vfolder-info.in + @${REINPLACE_CMD} -e "/^SUBDIRS =/s/test//" \ + ${WRKSRC}/Makefile.in + +.include <bsd.port.post.mk> |