X11 pixel magnifier with live RGB readout from FrauBSD. Ctrl+L locks
the sample; Button1 drag moves the window. Installs colormeter(1).
Details
Details
$ make package $ pkg install -y work/pkg/colormeter-1.0.pkg $ pkg list colormeter
Should produce:
/usr/local/bin/colormeter /usr/local/share/licenses/colormeter-1.0/BSD2CLAUSE /usr/local/share/licenses/colormeter-1.0/LICENSE /usr/local/share/licenses/colormeter-1.0/catalog.mk /usr/local/share/man/man1/colormeter.1.gz
Diff Detail
Diff Detail
- Repository
- R11 FreeBSD ports repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
This looks like an interesting and useful utility.
Port changes:
- You need an entry in x11/Makefile
- You need LIB_DEPENDS=libfontconfig.so:x11-fonts/fontconfig
% readelf -a /usr/local/bin/colormeter | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libXft.so.2] 0x0000000000000001 (NEEDED) Shared library: [libX11.so.6] 0x0000000000000001 (NEEDED) Shared library: [libfontconfig.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.7]
Comment Actions
Thanks!
% readelf -a /usr/local/bin/colormeter | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libXft.so.2] 0x0000000000000001 (NEEDED) Shared library: [libX11.so.6] 0x0000000000000001 (NEEDED) Shared library: [libfontconfig.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.7]
I like that! Great way to check the needs of just the one tool without using ldd