svn commit: r42682 - head/en_US.ISO8859-1/books/porters-handbook
Eitan Adler
eadler at FreeBSD.org
Sat Sep 21 14:48:10 UTC 2013
Author: eadler
Date: Sat Sep 21 14:48:09 2013
New Revision: 42682
URL: http://svnweb.freebsd.org/changeset/doc/42682
Log:
Use the new LIB_DEPENDS format in more places.
Remove graphics/xpm because it isn't a port.
Modified:
head/en_US.ISO8859-1/books/porters-handbook/book.xml
Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/book.xml Thu Sep 19 11:25:29 2013 (r42681)
+++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Sat Sep 21 14:48:09 2013 (r42682)
@@ -4591,7 +4591,7 @@ CONFIGURE_ARGS+= --without-examples
<title>Wrong Handling of an Option</title>
<programlisting>.if ${PORT_OPTIONS:MFOO}
-LIB_DEPENDS+= foo:${PORTSDIR}/devel/foo
+LIB_DEPENDS+= libfoo.so:${PORTSDIR}/devel/foo
CONFIGURE_ARGS+= --enable-foo
.endif</programlisting>
</example>
@@ -4610,7 +4610,7 @@ CONFIGURE_ARGS+= --enable-foo
<title>Correct Handling of an Option</title>
<programlisting>.if ${PORT_OPTIONS:MFOO}
-LIB_DEPENDS+= foo:${PORTSDIR}/devel/foo
+LIB_DEPENDS+= libfoo.so:${PORTSDIR}/devel/foo
CONFIGURE_ARGS+= --enable-foo
.else
CONFIGURE_ARGS+= --disable-foo
@@ -17123,7 +17123,6 @@ COMMENT= A DVI Previewer for the X Windo
[dependencies -- can be empty]
RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript
-LIB_DEPENDS= Xpm:${PORTSDIR}/graphics/xpm
[this section is for other standard bsd.port.mk variables that do not
belong to any of the above]
More information about the svn-doc-head
mailing list