Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Jun 2017 21:04:32 -0300
From:      =?UTF-8?Q?Danilo_Eg=C3=AAa_Gondolfo?= <danilogondolfo@gmail.com>
To:        Ian Lepore <ian@freebsd.org>
Cc:        Sunpoet Po-Chuan Hsieh <sunpoet@freebsd.org>, ports-committers <ports-committers@freebsd.org>,  "svn-ports-all@freebsd.org" <svn-ports-all@freebsd.org>,  "svn-ports-head@freebsd.org" <svn-ports-head@freebsd.org>
Subject:   Re: svn commit: r442810 - head/devel/libunwind
Message-ID:  <CAFU7VyMTwiEg9Z-LRp47pXab7_VzwjH4bu5j5YYTe2BnaObBHQ@mail.gmail.com>
In-Reply-To: <1496878561.89390.69.camel@freebsd.org>
References:  <201706062239.v56MdoRe041030@repo.freebsd.org> <CAMHz58SoiJxTtbRp4zrP0ZUfQ0%2BXgm-r0TgsOaViw12UC2=o6A@mail.gmail.com> <CAFU7VyO385SmWG_gPdgRZJoa1EvnZj12hOR__iBk-f8AjyNdDg@mail.gmail.com> <1496878561.89390.69.camel@freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Well, I've checked the Handbook, "The DOCS option only controls additional
documentation installed in DOCSDIR. It does not apply to standard man pages
and info pages.". My guess is that the man pages should just be installed,
as sunpoet@ says.

On Wed, Jun 7, 2017 at 8:36 PM, Ian Lepore <ian@freebsd.org> wrote:

> This is insane.  How does one install without manpages if manpages
> aren't docs?  Will you now give us WITHOUT_MANPAGES so we still have
> control?  Consider an embedded system with limited storage and
> absolutely nothing like an interactive user interested in reading
> manpages about using a programming support library.
>
> -- Ian
>
> On Wed, 2017-06-07 at 20:28 -0300, Danilo Eg=C3=AAa Gondolfo wrote:
> > Make sense. I'll do this. Thanks!
> >
> > On Wed, Jun 7, 2017 at 3:53 PM, Sunpoet Po-Chuan Hsieh <sunpoet@freeb
> > sd.org>
> > wrote:
> >
> > >
> > > On Wed, Jun 7, 2017 at 6:39 AM, Danilo Egea Gondolfo <danilo@freebs
> > > d.org>
> > > wrote:
> > >
> > > >
> > > > Author: danilo
> > > > Date: Tue Jun  6 22:39:50 2017
> > > > New Revision: 442810
> > > > URL: https://svnweb.freebsd.org/changeset/ports/442810
> > > >
> > > > Log:
> > > >   - Add DOCS option. The configure script looks for latex2man
> > > > tool to
> > > > install docs but
> > > >     the man files are already built in the package, so we are
> > > > just
> > > > installing them.
> > > >
> > > >   PR:           219582
> > > >   Submitted by:  John Hein
> > > >
> > > >
> > > Hello,
> > >
> > > Though upstream considers manpages as documentation, we do not have
> > > to
> > > follow it.
> > > Could you please remove DOCS option and install these manpages
> > > unconditionally?
> > > Thanks!
> > >
> > > Regards,
> > > sunpoet
> > >
> > >
> > > >
> > > > Modified:
> > > >   head/devel/libunwind/Makefile
> > > >   head/devel/libunwind/pkg-plist
> > > >
> > > > Modified: head/devel/libunwind/Makefile
> > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> > > > --- head/devel/libunwind/Makefile       Tue Jun  6 22:31:31 2017
> > > > (r442809)
> > > > +++ head/devel/libunwind/Makefile       Tue Jun  6 22:39:50 2017
> > > > (r442810)
> > > > @@ -3,6 +3,7 @@
> > > >
> > > >  PORTNAME=3D      libunwind
> > > >  PORTVERSION=3D   20170113        # This is the release date of
> > > > libunwind
> > > > 1.2
> > > > +PORTREVISION=3D  1
> > > >  CATEGORIES=3D    devel
> > > >  MASTER_SITES=3D  SAVANNAH
> > > >  DISTNAME=3D      ${PORTNAME}-1.2
> > > > @@ -13,10 +14,14 @@ COMMENT=3D    Generic stack unwinding library
> > > >  LICENSE=3D       MIT
> > > >  LICENSE_FILE=3D  ${WRKSRC}/COPYING
> > > >
> > > > +OPTIONS_DEFINE=3D        DOCS
> > > > +OPTIONS_SUB=3D   yes
> > > > +DOCS_CONFIGURE_ON=3D     ac_cv_path_LATEX2MAN=3D${TRUE}
> > > > +DOCS_CONFIGURE_OFF=3D    --disable-documentation
> > > > +
> > > >  ONLY_FOR_ARCHS=3D        i386 amd64
> > > >
> > > >  GNU_CONFIGURE=3D yes
> > > > -CONFIGURE_ARGS+=3D       --disable-documentation
> > > >  INSTALL_TARGET=3D        install-strip
> > > >  USE_LDCONFIG=3D  yes
> > > >  USES=3D          libtool pathfix pkgconfig
> > > >
> > > > Modified: head/devel/libunwind/pkg-plist
> > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> > > > --- head/devel/libunwind/pkg-plist      Tue Jun  6 22:31:31 2017
> > > > (r442809)
> > > > +++ head/devel/libunwind/pkg-plist      Tue Jun  6 22:39:50 2017
> > > > (r442810)
> > > > @@ -32,3 +32,32 @@ libdata/pkgconfig/libunwind-generic.pc
> > > >  libdata/pkgconfig/libunwind-ptrace.pc
> > > >  libdata/pkgconfig/libunwind-setjmp.pc
> > > >  libdata/pkgconfig/libunwind.pc
> > > > +%%DOCS%%man/man3/_U_dyn_cancel.3.gz
> > > > +%%DOCS%%man/man3/_U_dyn_register.3.gz
> > > > +%%DOCS%%man/man3/libunwind-dynamic.3.gz
> > > > +%%DOCS%%man/man3/libunwind-ia64.3.gz
> > > > +%%DOCS%%man/man3/libunwind-ptrace.3.gz
> > > > +%%DOCS%%man/man3/libunwind-setjmp.3.gz
> > > > +%%DOCS%%man/man3/libunwind.3.gz
> > > > +%%DOCS%%man/man3/unw_backtrace.3.gz
> > > > +%%DOCS%%man/man3/unw_create_addr_space.3.gz
> > > > +%%DOCS%%man/man3/unw_destroy_addr_space.3.gz
> > > > +%%DOCS%%man/man3/unw_flush_cache.3.gz
> > > > +%%DOCS%%man/man3/unw_get_accessors.3.gz
> > > > +%%DOCS%%man/man3/unw_get_fpreg.3.gz
> > > > +%%DOCS%%man/man3/unw_get_proc_info.3.gz
> > > > +%%DOCS%%man/man3/unw_get_proc_info_by_ip.3.gz
> > > > +%%DOCS%%man/man3/unw_get_proc_name.3.gz
> > > > +%%DOCS%%man/man3/unw_get_reg.3.gz
> > > > +%%DOCS%%man/man3/unw_getcontext.3.gz
> > > > +%%DOCS%%man/man3/unw_init_local.3.gz
> > > > +%%DOCS%%man/man3/unw_init_remote.3.gz
> > > > +%%DOCS%%man/man3/unw_is_fpreg.3.gz
> > > > +%%DOCS%%man/man3/unw_is_signal_frame.3.gz
> > > > +%%DOCS%%man/man3/unw_regname.3.gz
> > > > +%%DOCS%%man/man3/unw_resume.3.gz
> > > > +%%DOCS%%man/man3/unw_set_caching_policy.3.gz
> > > > +%%DOCS%%man/man3/unw_set_fpreg.3.gz
> > > > +%%DOCS%%man/man3/unw_set_reg.3.gz
> > > > +%%DOCS%%man/man3/unw_step.3.gz
> > > > +%%DOCS%%man/man3/unw_strerror.3.gz
> > > > _______________________________________________
> > > > svn-ports-all@freebsd.org mailing list
> > > > https://lists.freebsd.org/mailman/listinfo/svn-ports-all
> > > > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freeb
> > > > sd.org"
> > >
> >
>



--=20
Danilo.
@daniloegea
http://people.freebsd.org/~danilo/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAFU7VyMTwiEg9Z-LRp47pXab7_VzwjH4bu5j5YYTe2BnaObBHQ>