diff options
author | marcus <marcus@FreeBSD.org> | 2005-04-11 01:40:54 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-04-11 01:40:54 +0800 |
commit | 53f5ff72c55060f8a45a69369c4e1465fa93f835 (patch) | |
tree | 01e09d56c69d35f890f07a7bdb2dcaa886e69d48 /devel/gnomevfs2 | |
parent | 2cd9347f3370734b5352855750585578b609d030 (diff) | |
download | freebsd-ports-graphics-53f5ff72c55060f8a45a69369c4e1465fa93f835.tar.gz freebsd-ports-graphics-53f5ff72c55060f8a45a69369c4e1465fa93f835.tar.zst freebsd-ports-graphics-53f5ff72c55060f8a45a69369c4e1465fa93f835.zip |
Use gamin for our FAM dependency if Gamin is installed.
Diffstat (limited to 'devel/gnomevfs2')
-rw-r--r-- | devel/gnomevfs2/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/gnomevfs2/Makefile b/devel/gnomevfs2/Makefile index 60136a8089f..fd967c49be8 100644 --- a/devel/gnomevfs2/Makefile +++ b/devel/gnomevfs2/Makefile @@ -71,7 +71,11 @@ PLIST_SUB+= CDPARANOIA="@comment " .endif .if exists(${LOCALBASE}/lib/libfam.so) || !defined(WITHOUT_FAM) -LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam +FAM_DEPENDS= ${PORTSDIR}/devel/fam +.if exists(${LOCALBASE}/lib/libgamin-1.so) +FAM_DEPENDS= ${PORTSDIR}/devel/gamin +.endif +LIB_DEPENDS+= fam.0:${FAM_DEPENDS} .endif .if exists(${LOCALBASE}/lib/libkrb5.so) |