On 6/24/2017 8:18 PM, Jakub Skrzypnik wrote: > Which file contains it? > > % pwd > /home/skrzyp/ports/x11/lxappearance > % grep -rE ' $' Makefile pkg/DESCR > %
Try this in your Makefile: With the exception of WANTLIB (which you basically copy and paste from the output of make port-lib-depends-check), variables in the Makefile should follow this format: VAR<space>=<tab>value If you have a value that spans multiple lines (like LIB_DEPENDS and CONFIGURE_ARGS in your case), the arguments should be lined up by tab stop. So do this: LIB_DEPENDS<space>=<tab>devel/gettext<space>\ <tab><tab>x11/dbus-glib<space>\ <tab><tab>x11/gtk+3 Then do the same thing for CONFIGURE_ARGS. Additionally, your pkg/DESCR has a bonus line after the text, which your grep-fu didn't catch. ~Brian > > On Sun, 25 Jun 2017 00:23:47 +0100 > Stuart Henderson <s...@spacehopper.org> wrote: > >> On 2017/06/24 23:58, Jakub Skrzypnik wrote: >>> Used your tarball, >> Except you compressed the whitespace again. Look at every other >> port in the tree - we don't do it like that. >>