Re: git: 51b1b2399142 - main - sysutils/process-viewer: New port: Process viewer GUI in Rust
- Reply: Yuri Victorovich : "Re: git: 51b1b2399142 - main - sysutils/process-viewer: New port: Process viewer GUI in Rust"
- In reply to: Yuri Victorovich : "git: 51b1b2399142 - main - sysutils/process-viewer: New port: Process viewer GUI in Rust"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 05 Jan 2023 06:53:53 UTC
Yuri Victorovich <yuri@FreeBSD.org> writes: > +LIB_DEPENDS= libgraphene-1.0.so:graphics/graphene \ > + libgtk-4.so:x11-toolkits/gtk40 > + > +USES= cargo gnome > +USE_GNOME= cairo gdkpixbuf2 glib20 pango - x11-toolkits/gtk40 can be requested via USE_GNOME - USE_GNOME=pango already implies USE_GNOME=glib20 - USE_GNOME=gtk40 already implies USE_GNOME=pango diff --git a/sysutils/process-viewer/Makefile b/sysutils/process-viewer/Makefile index d99daf276738..332fc648e25d 100644 --- a/sysutils/process-viewer/Makefile +++ b/sysutils/process-viewer/Makefile @@ -9,11 +9,10 @@ WWW= https://github.com/guillaumegomez/process-viewer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= libgraphene-1.0.so:graphics/graphene \ - libgtk-4.so:x11-toolkits/gtk40 +LIB_DEPENDS= libgraphene-1.0.so:graphics/graphene USES= cargo gnome -USE_GNOME= cairo gdkpixbuf2 glib20 pango +USE_GNOME= cairo gdkpixbuf2 gtk40 USE_GITHUB= yes GH_ACCOUNT= guillaumegomez