[Bug 207062] [new port] devel/yaggo Poudriere logs attached

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Feb 26 14:08:32 UTC 2016


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=207062

Raphael Kubo da Costa <rakuco at FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rakuco at FreeBSD.org

--- Comment #5 from Raphael Kubo da Costa <rakuco at FreeBSD.org> ---
A couple of suggestions:
* You could set NO_ARCH=yes (it's also suggested in the "install" phase in your
Poudriere logs).
* You can make your Makefile patch smaller by doing
  MAKE_ARGS= prefix=${STAGEDIR}${PREFIX}

  If you do this, your patch can be reduced to changing the man pages location:

--- Makefile
+++ Makefile
@@ -6,7 +6,7 @@ all: bin/create_yaggo_one_file
 install: all
        mkdir -p $(prefix)/bin
        mkdir -p $(prefix)/share/doc/yaggo
-       mkdir -p $(prefix)/share/man/man1
+       mkdir -p $(prefix)/man/man1
        cp ./yaggo $(prefix)/bin
        cp ./README.md $(prefix)/share/doc/yaggo
-       ./yaggo -m $(prefix)/share/man/man1/yaggo.1
+       ./yaggo -m $(prefix)/man/man1/yaggo.1

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list