diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2021-01-21 22:37:31 +0800 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2021-01-21 22:37:31 +0800 |
commit | 70540a8b17c160b65707c35b4b28b34e03629071 (patch) | |
tree | 08931882ee6e74ec8b394ab603b22c09f5adfffa /sysutils | |
parent | fb8e2945db4363e0388f75dd00951616ee6e17ab (diff) | |
download | freebsd-ports-gnome-70540a8b17c160b65707c35b4b28b34e03629071.tar.gz freebsd-ports-gnome-70540a8b17c160b65707c35b4b28b34e03629071.tar.zst freebsd-ports-gnome-70540a8b17c160b65707c35b4b28b34e03629071.zip |
comms/libimobiledevice: Update to 1.3.0
comms/libusbmuxd: Update to 2.0.2
comms/usbmuxd: Update to 1.1.1
devel/libplist: Update to 2.2.0
Resurrect comms/py-libimobiledevice, update to 1.3.0
Resurrect devel/py-libplist, update to 2.2.0
Take maintainership of the ports listed above.
Bump PORTREVISION on consumers and adjust LIB_DEPENDS to new versioned library
names.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/fusefs-ifuse/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysutils/fusefs-ifuse/Makefile b/sysutils/fusefs-ifuse/Makefile index afa53f7bd4a6..6ce64c41500b 100644 --- a/sysutils/fusefs-ifuse/Makefile +++ b/sysutils/fusefs-ifuse/Makefile @@ -3,7 +3,7 @@ PORTNAME= ifuse PORTVERSION= 1.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://www.libimobiledevice.org/downloads/ PKGNAMEPREFIX= fusefs- @@ -13,8 +13,8 @@ COMMENT= FUSE-based filesystem for mounting iOS devices over USB LICENSE= LGPL21 -LIB_DEPENDS= libplist.so:devel/libplist \ - libimobiledevice.so:comms/libimobiledevice +LIB_DEPENDS= libplist-2.0.so:devel/libplist \ + libimobiledevice-1.0.so:comms/libimobiledevice RUN_DEPENDS= usbmuxd:comms/usbmuxd USE_GNOME= glib20 @@ -25,4 +25,7 @@ LDFLAGS+= -L${LOCALBASE}/lib PLIST_FILES= bin/${PORTNAME} man/man1/ifuse.1.gz +post-patch: + @${REINPLACE_CMD} -e 's|\"libplist|"libplist-2.0|g' ${WRKSRC}/configure + .include <bsd.port.mk> |