diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2023-01-31 17:00:39 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2023-02-01 09:11:15 +0000 |
commit | ef4a2bbf51b7cf90cfc74412cdeb3705a28f0b17 (patch) | |
tree | 35fda2d7c3416735fe63294b1ed7997c160c28c8 | |
parent | a7989119aebaf80cf6e5346c1c7796d53e962961 (diff) | |
download | ports-ef4a2bbf51b7cf90cfc74412cdeb3705a28f0b17.tar.gz ports-ef4a2bbf51b7cf90cfc74412cdeb3705a28f0b17.zip |
multimedia/cheese: remove wrong dependency on gtk2
-rw-r--r-- | multimedia/cheese/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/multimedia/cheese/Makefile b/multimedia/cheese/Makefile index 47373ebf875f..52596ac13239 100644 --- a/multimedia/cheese/Makefile +++ b/multimedia/cheese/Makefile @@ -1,6 +1,6 @@ PORTNAME= cheese PORTVERSION= 41.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia gnome MASTER_SITES= GNOME/sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+)\..*/\1/} DIST_SUBDIR= gnome @@ -16,7 +16,6 @@ BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat \ gnome-video-effects>=0:graphics/gnome-video-effects \ itstool:textproc/itstool LIB_DEPENDS= libcanberra-gtk3.so:audio/libcanberra-gtk3 \ - libcanberra-gtk.so:audio/libcanberra-gtk2 \ libcanberra.so:audio/libcanberra \ libclutter-1.0.so:graphics/clutter \ libcogl.so:graphics/cogl \ @@ -41,6 +40,6 @@ MESON_ARGS= -Dgtk_doc=false \ GLIB_SCHEMAS= org.gnome.Cheese.gschema.xml post-patch: - @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e 's|canberra-gtk\.h|canberra-gtk2/canberra-gtk.h|' + @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e 's|canberra-gtk\.h|canberra-gtk3/canberra-gtk.h|' .include <bsd.port.mk> |