Lines 205-218
has returned.
Link Here
|
205 |
available in EAPIs that support offset-prefix installations as listed in |
205 |
available in EAPIs that support offset-prefix installations as listed in |
206 |
Table~\ref{tab:offset-env-vars-table}, hence EAPIs lacking offset-prefix support should use \t{D} |
206 |
Table~\ref{tab:offset-env-vars-table}, hence EAPIs lacking offset-prefix support should use \t{D} |
207 |
instead of \t{ED} in the command given in Listing~\ref{lst:einstall}. |
207 |
instead of \t{ED} in the command given in Listing~\ref{lst:einstall}. |
|
|
208 |
Variable \t{libdir} is an auxiliary local variable whose value is determined by |
209 |
Algorithm~\ref{alg:ebuild-libdir}. |
208 |
\begin{listing}[H] |
210 |
\begin{listing}[H] |
209 |
\caption{einstall command}\label{lst:einstall} |
211 |
\caption{einstall command}\label{lst:einstall} |
210 |
\begin{verbatim} |
212 |
\begin{verbatim} |
211 |
emake \ |
213 |
emake \ |
212 |
prefix="${ED}"/usr \ |
214 |
prefix="${ED}"/usr \ |
|
|
215 |
datadir="${ED}"/usr/share \ |
213 |
mandir="${ED}"/usr/share/man \ |
216 |
mandir="${ED}"/usr/share/man \ |
214 |
infodir="${ED}"/usr/share/info \ |
217 |
infodir="${ED}"/usr/share/info \ |
215 |
libdir="${ED}"/usr/$(get_libdir) \ |
218 |
libdir="${ED}"/usr/${libdir} \ |
|
|
219 |
localstatedir="${ED}"/var/lib \ |
220 |
sysconfdir="${ED}"/etc \ |
221 |
-j1 \ |
216 |
"$@" \ |
222 |
"$@" \ |
217 |
install |
223 |
install |
218 |
\end{verbatim} |
224 |
\end{verbatim} |
219 |
- |
|
|