diff options
author | rakuco <rakuco@FreeBSD.org> | 2015-12-30 17:45:32 +0000 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2015-12-30 17:45:32 +0000 |
commit | 9b808cf8b96bca6e91ec22f697ce77eb66af207c (patch) | |
tree | eee5b882c5b82c2ca4dc978b8c472738369c1655 /x11 | |
parent | 3d09ebb3fe6791a95dee2f460e63ff10b2503c7a (diff) | |
download | FreeBSD-ports-9b808cf8b96bca6e91ec22f697ce77eb66af207c.zip FreeBSD-ports-9b808cf8b96bca6e91ec22f697ce77eb66af207c.tar.gz |
Finish fixing broken ports after r404856 and r404694.
* multimedia/obs-studio:
Import some upstream commits that pass all required include directories to
the compiler and reference libsysinfo.so with a full path instead of passing
-lsysinfo and relying on ${LOCALBASE}/lib being in the linker search path.
* textproc/sigil:
Pass LDFLAGS+=${LOCALBASE}/lib for now to work around the fact that
upstream's build system references libhunspell-1.3.so and libpcre16.so
without full paths (instead of finding them with the proper CMake commands it
relies on pkg-config's output).
* x11/antimicro:
Also pass LDFLAGS+=${LOCALBASE}/lib for now to work around the fact that
several X11 and SDL2 libraries are referenced without full paths. I sent a
pull request upstream to fix the X11 references, but SDL2 is still detected
through pkg-config.
MFH: 2015Q4
Diffstat (limited to 'x11')
-rw-r--r-- | x11/antimicro/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/x11/antimicro/Makefile b/x11/antimicro/Makefile index c697ca2..43c7913 100644 --- a/x11/antimicro/Makefile +++ b/x11/antimicro/Makefile @@ -13,6 +13,11 @@ LICENSE= GPLv3 USE_GITHUB= yes GH_ACCOUNT= Ryochan7 +# Upstream assumes ${LOCALBASE}/lib is part of the default linker path. Pull +# request 268 fixes it for X11 libraries, but SDL2 is still using pkg-config +# output (without full paths). +LDFLAGS+= ${LOCALBASE}/lib + USE_XORG= x11 xtst USE_QT5= linguisttools_build qmake_build buildtools_build widgets network USE_SDL= sdl2 |