diff options
author | pi <pi@FreeBSD.org> | 2018-08-16 16:37:28 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2018-08-16 16:37:28 +0800 |
commit | 5a65e1974f73e2312bda638a2b8ce1b99365f385 (patch) | |
tree | 59e1de084727ce1c7ec86c2fb8038f1e244a4780 /x11-fm | |
parent | bc0fc976d1068c39e29e5e68e59cf7761c341591 (diff) | |
download | freebsd-ports-gnome-5a65e1974f73e2312bda638a2b8ce1b99365f385.tar.gz freebsd-ports-gnome-5a65e1974f73e2312bda638a2b8ce1b99365f385.tar.zst freebsd-ports-gnome-5a65e1974f73e2312bda638a2b8ce1b99365f385.zip |
x11-fm/rox-filer: requires libinotify to build
PR: 230250
Submitted by: rsmith@xs4all.nl
Approved by: olgeni (maintainer timeout)
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/rox-filer/Makefile | 4 | ||||
-rw-r--r-- | x11-fm/rox-filer/files/patch-ROX-Filer_src_Makefile.in | 17 |
2 files changed, 16 insertions, 5 deletions
diff --git a/x11-fm/rox-filer/Makefile b/x11-fm/rox-filer/Makefile index 18d6e1438a2c..064e623151d7 100644 --- a/x11-fm/rox-filer/Makefile +++ b/x11-fm/rox-filer/Makefile @@ -2,7 +2,7 @@ PORTNAME= rox-filer PORTVERSION= 2.11 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-fm gnome MASTER_SITES= SF/rox/rox/${PORTVERSION} DISTNAME= rox-filer-${PORTVERSION} @@ -10,6 +10,8 @@ DISTNAME= rox-filer-${PORTVERSION} MAINTAINER= olgeni@FreeBSD.org COMMENT= Simple and easy to use graphical file manager +LIB_DEPENDS= libinotify.so:devel/libinotify + PLIST_SUB+= LOCALBASE=${LOCALBASE} USE_XORG= x11 sm xaw xorgproto diff --git a/x11-fm/rox-filer/files/patch-ROX-Filer_src_Makefile.in b/x11-fm/rox-filer/files/patch-ROX-Filer_src_Makefile.in index e734de3b7c8c..8347e7a3d53b 100644 --- a/x11-fm/rox-filer/files/patch-ROX-Filer_src_Makefile.in +++ b/x11-fm/rox-filer/files/patch-ROX-Filer_src_Makefile.in @@ -1,8 +1,17 @@ ---- ROX-Filer/src/Makefile.in.orig -+++ ROX-Filer/src/Makefile.in -@@ -46,10 +46,7 @@ +--- ROX-Filer/src/Makefile.in.orig 2011-10-09 16:31:59.000000000 +0200 ++++ ROX-Filer/src/Makefile.in 2018-07-31 22:30:30.674172000 +0200 +@@ -7,7 +7,7 @@ + .SUFFIXES: .c .o + + PKG_CONFIG = @PKG_CONFIG@ +-LIBS = @LIBS@ @LFS_LDFLAGS@ -lICE -lSM ++LIBS = @LIBS@ @LFS_LDFLAGS@ -lICE -lSM -linotify + #PROF = -fprofile-arcs -pg + + PKG_CONFIG_FLAGS= +@@ -47,10 +47,7 @@ + ${PROG}: ${OBJECTS} ${CC} -o "${PROG}" ${OBJECTS} ${LDFLAGS} - [ -d "${PLATFORM_DIR}" ] || mkdir "${PLATFORM_DIR}" mv "${PROG}" "${PLATFORM_DIR}" - -(cd "${PLATFORM_DIR}" && \ - objcopy --only-keep-debug ROX-Filer ROX-Filer.dbg && \ |