Whitespace-only fixes. Wrap long lines, fix indentation. Translators,
please ignore.
This commit is contained in:
parent
372160a46e
commit
bf0cd9fb62
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=38875
1 changed files with 40 additions and 36 deletions
|
@ -580,8 +580,8 @@ PLIST_DIRS= lib/X11/oneko</programlisting>
|
|||
fix <maketarget>do-extract</maketarget>, but never ever
|
||||
change the way <maketarget>extract</maketarget>
|
||||
operates! Additionally, the target
|
||||
<maketarget>post-deinstall</maketarget> is invalid and
|
||||
is not run by the ports infrastructure.</para>
|
||||
<maketarget>post-deinstall</maketarget> is invalid and
|
||||
is not run by the ports infrastructure.</para>
|
||||
</note>
|
||||
|
||||
<para>Now that you understand what goes on when the user types
|
||||
|
@ -595,8 +595,8 @@ PLIST_DIRS= lib/X11/oneko</programlisting>
|
|||
<para>Get the original sources (normally) as a compressed
|
||||
tarball
|
||||
(<filename><replaceable>foo</replaceable>.tar.gz</filename> or
|
||||
<filename><replaceable>foo</replaceable>.tar.bz2</filename>) and
|
||||
copy it into <makevar>DISTDIR</makevar>. Always use
|
||||
<filename><replaceable>foo</replaceable>.tar.bz2</filename>)
|
||||
and copy it into <makevar>DISTDIR</makevar>. Always use
|
||||
<emphasis>mainstream</emphasis> sources when and where you
|
||||
can.</para>
|
||||
|
||||
|
@ -5638,7 +5638,8 @@ PLIST_SUB+= NLS="@comment "
|
|||
xfontcache xft xi xinerama xineramaproto xkbfile xkbui
|
||||
xmu xmuu xorg-server xp xpm xprintapputil xprintutil
|
||||
xproto xproxymngproto xrandr xrender xres xscrnsaver xt
|
||||
xtrans xtrap xtst xv xvmc xxf86dga xxf86misc xxf86vm</literal>.</para>
|
||||
xtrans xtrap xtst xv xvmc xxf86dga xxf86misc
|
||||
xxf86vm</literal>.</para>
|
||||
|
||||
<para>Always up-to-date list can be found in
|
||||
<filename>/usr/ports/Mk/bsd.xorg.mk</filename>.</para>
|
||||
|
@ -6039,7 +6040,8 @@ USE_XORG= x11 xpm</programlisting>
|
|||
<row>
|
||||
<entry><makevar>QMAKESPEC</makevar></entry>
|
||||
<entry>Set to the path of configuration file for
|
||||
<command>qmake</command> (read-only variable).</entry>
|
||||
<command>qmake</command> (read-only
|
||||
variable).</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
|
@ -6068,21 +6070,21 @@ MAKE_ENV+= QMAKESPEC="${QMAKESPEC}"</programlisting>
|
|||
<sect2 id="qt4-components">
|
||||
<title>Component Selection (Qt 4.x Only)</title>
|
||||
|
||||
<para>When <makevar>USE_QT_VER</makevar> is set to <literal>4</literal>,
|
||||
individual Qt 4 tool and library dependencies can be
|
||||
specified in the <makevar>QT_COMPONENTS</makevar> variable.
|
||||
Every component can be suffixed by either
|
||||
<literal>_build</literal> or <literal>_run</literal>, the
|
||||
suffix indicating whether the component should be depended
|
||||
on at buildtime or runtime, respectively. If unsuffixed,
|
||||
the component will be depended on at both build- and
|
||||
runtime. Usually, library components should be specified
|
||||
unsuffixed, tool components should be specified with the
|
||||
<literal>_build</literal> suffix and plugin components
|
||||
should be specified with the <literal>_run</literal> suffix.
|
||||
The most commonly used components are listed below (all
|
||||
available components are listed in
|
||||
<makevar>_QT_COMPONENTS_ALL</makevar> in
|
||||
<para>When <makevar>USE_QT_VER</makevar> is set to
|
||||
<literal>4</literal>, individual Qt 4 tool and library
|
||||
dependencies can be specified in the
|
||||
<makevar>QT_COMPONENTS</makevar> variable. Every component
|
||||
can be suffixed by either <literal>_build</literal> or
|
||||
<literal>_run</literal>, the suffix indicating whether the
|
||||
component should be depended on at buildtime or runtime,
|
||||
respectively. If unsuffixed, the component will be depended
|
||||
on at both build- and runtime. Usually, library components
|
||||
should be specified unsuffixed, tool components should be
|
||||
specified with the <literal>_build</literal> suffix and
|
||||
plugin components should be specified with the
|
||||
<literal>_run</literal> suffix. The most commonly used
|
||||
components are listed below (all available components are
|
||||
listed in <makevar>_QT_COMPONENTS_ALL</makevar> in
|
||||
<filename>/usr/ports/Mk/bsd.qt.mk</filename>):</para>
|
||||
|
||||
<table frame="none">
|
||||
|
@ -6226,14 +6228,14 @@ MAKE_ENV+= QMAKESPEC="${QMAKESPEC}"</programlisting>
|
|||
<para>In this example, the ported application uses the Qt 4
|
||||
graphical user interface library, the Qt 4 core library,
|
||||
all of the Qt 4 code generation tools and Qt 4's Makefile
|
||||
generator. Since the <literal>gui</literal> library implies
|
||||
a dependency on the core library, <literal>corelib</literal>
|
||||
does not need to be specified. The Qt 4 code generation tools
|
||||
<literal>moc</literal>, <literal>uic</literal> and
|
||||
<literal>rcc</literal>, as well as the Makefile generator
|
||||
<literal>qmake</literal> are only needed at buildtime,
|
||||
thus they are specified with the <literal>_build</literal>
|
||||
suffix:</para>
|
||||
generator. Since the <literal>gui</literal> library
|
||||
implies a dependency on the core library,
|
||||
<literal>corelib</literal> does not need to be specified.
|
||||
The Qt 4 code generation tools <literal>moc</literal>,
|
||||
<literal>uic</literal> and <literal>rcc</literal>, as well
|
||||
as the Makefile generator <literal>qmake</literal> are
|
||||
only needed at buildtime, thus they are specified with the
|
||||
<literal>_build</literal> suffix:</para>
|
||||
|
||||
<programlisting>USE_QT_VER= 4
|
||||
QT_COMPONENTS= gui moc_build qmake_build rcc_build uic_build</programlisting>
|
||||
|
@ -6270,8 +6272,8 @@ do-configure:
|
|||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para><emphasis>Missing additional
|
||||
include paths.</emphasis> Many applications come with
|
||||
<para><emphasis>Missing additional include
|
||||
paths.</emphasis> Many applications come with
|
||||
system tray icon support, but neglect to look for
|
||||
includes and/or libraries in the X11 directories. You
|
||||
can tell <command>qmake</command> to add directories to
|
||||
|
@ -6339,7 +6341,7 @@ do-configure:
|
|||
components. <literal>_build</literal> and
|
||||
<literal>_run</literal> suffixes can be used to force
|
||||
components dependency type (e.g.,
|
||||
<literal>baseapps_run</literal>). If no suffix is set, a
|
||||
<literal>baseapps_run</literal>). If no suffix is set, a
|
||||
default dependency type will be used. If you want to force
|
||||
both types, add the component twice with both suffixes
|
||||
(e.g., <literal>automoc4_build automoc4_run</literal>). The
|
||||
|
@ -6572,7 +6574,8 @@ QT_COMPONENTS= moc_build qmake_build rcc_build uic_build</programlisting>
|
|||
<row>
|
||||
<entry><makevar>JAVA_PORT_VENDOR_DESCRIPTION</makevar></entry>
|
||||
<entry>Description of the vendor of the JDK port (e.g.
|
||||
<literal>'OpenJDK BSD Porting Team'</literal>).</entry>
|
||||
<literal>'OpenJDK BSD Porting
|
||||
Team'</literal>).</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
|
@ -8907,9 +8910,10 @@ CFLAGS+= -DLUA_VERSION_STRING="${VER_STR}"
|
|||
<row>
|
||||
<entry><makevar>USE_SQLITE</makevar></entry>
|
||||
<entry>If variable is set to <literal>yes</literal>, add
|
||||
dependency on <filename
|
||||
role="package">databases/sqlite3</filename>
|
||||
port. The variable may also be set to values: 3, 2.</entry>
|
||||
dependency on
|
||||
<filename role="package">databases/sqlite3</filename>
|
||||
port. The variable may also be set to values: 3,
|
||||
2.</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
|
|
Loading…
Reference in a new issue