diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-03-12 16:34:09 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-03-12 16:36:16 +0000 |
commit | ff70d3153f88382bc3422ca85f36b4bdb379459f (patch) | |
tree | d3ccf28c72914e1d115af445b8db492789539195 | |
parent | b8818891ca198e1e907264b35dabf83dd20ff4d9 (diff) |
graphics/libepoxy: add run dependency on libegl
libexpoxy does not technically link to libegl, but has a dependency on
it via its pkgconf file, in the future we will stop tracking LIB_DEPENDS
as RUN_DEPENDS, anticipate this change and enforce egl.pc as a
RUN_DEPENDS
-rw-r--r-- | graphics/libepoxy/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/libepoxy/Makefile b/graphics/libepoxy/Makefile index c3c93f7598fc..9640aa5740ba 100644 --- a/graphics/libepoxy/Makefile +++ b/graphics/libepoxy/Makefile @@ -10,6 +10,8 @@ WWW= https://github.com/anholt/libepoxy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/egl.pc:graphics/libglvnd + USES= gl localbase meson pkgconfig python:build shebangfix tar:xz USE_GL= glesv2 egl USE_LDCONFIG= yes |