<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/lang/ruby19, branch pkg-install-eol</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=pkg-install-eol</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=pkg-install-eol'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2014-08-30T21:09:09Z</updated>
<entry>
<title>lang/ruby*: fix docs handling</title>
<updated>2014-08-30T21:09:09Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-08-30T21:09:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b8ce65474eb9ed725c225699258070149849748c'/>
<id>urn:sha1:b8ce65474eb9ed725c225699258070149849748c</id>
<content type='text'>
- Fix handling of RDOC option and make it ON by default
- Add DOCS option to OPTIONS_DEFINE
- Add EXAMPLES option
- Add CAPIDOCS option which installs C API documents generated by doxygen
- Other cleanups while here

PR:		189646
Submitted by:	Yasuhiro KIMURA &lt;yasu@utahime.org&gt; (based on)
</content>
</entry>
<entry>
<title>lang/ruby19: update to Ruby 1.9.3-p547</title>
<updated>2014-07-26T19:08:08Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-07-26T19:08:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=8af92cd6d127ad46333d817d1bdd73074fa97d88'/>
<id>urn:sha1:8af92cd6d127ad46333d817d1bdd73074fa97d88</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add CPE information.</title>
<updated>2014-07-02T12:49:59Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2014-07-02T12:49:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=499a72791323801fced0ccf6ca4b2ea99c3cf33d'/>
<id>urn:sha1:499a72791323801fced0ccf6ca4b2ea99c3cf33d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Force use of libreadline from ports rather than base, in order to avoid</title>
<updated>2014-07-01T14:30:59Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-07-01T14:30:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=c13bfe349b7a042c4adf25cc6687327deb60af00'/>
<id>urn:sha1:c13bfe349b7a042c4adf25cc6687327deb60af00</id>
<content type='text'>
  unexpectedly getting readline from ports if it's already installed.
- Add patch to work with newer libreadline.
- Provide an option to use libedit from ports, avoiding the libedit in base.
- Note: libreadline is not BSD licensed and while libedit would be preferable,
  it seems to have issues with UTF8 still, see ruby bug 9204. Once that's
  resolved, we can make libedit the default. Similar changes were done to Ruby
  2.0 and 2.1 in r355890. Also convert to USES=tar:bzip2 while here and cleanup
  a plist issue.
</content>
</entry>
<entry>
<title>Support LIBS like LDFLAGS.</title>
<updated>2014-06-11T14:49:59Z</updated>
<author>
<name>Tijl Coosemans</name>
<email>tijl@FreeBSD.org</email>
</author>
<published>2014-06-11T14:49:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=9f8b4bcde30c0ca3bf6cead5f48aa102536e0e92'/>
<id>urn:sha1:9f8b4bcde30c0ca3bf6cead5f48aa102536e0e92</id>
<content type='text'>
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION &lt; 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
</content>
</entry>
<entry>
<title>- Remove reference to lang/ruby-mode.el since it is gone</title>
<updated>2014-03-25T02:19:10Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-03-25T02:19:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=2fba6d82653d4084d0beda3e2f958402f7280666'/>
<id>urn:sha1:2fba6d82653d4084d0beda3e2f958402f7280666</id>
<content type='text'>
PR:		ports/187895
Submitted by:	Yasuhiro KIMURA &lt;yasu@utahime.org&gt;
</content>
</entry>
<entry>
<title>- Fix patch broken in r292221</title>
<updated>2014-03-23T15:31:43Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-03-23T15:31:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=eedf7913ee3953191b93b75b7c003fc184a8f238'/>
<id>urn:sha1:eedf7913ee3953191b93b75b7c003fc184a8f238</id>
<content type='text'>
PR:		ports/187472
Redported by:	Jeremy Chadwick &lt;jdc@koitsu.org&gt;
</content>
</entry>
<entry>
<title>- Add patch to fix build on 11-CURRENT after Clang 3.4 import. No need to</title>
<updated>2014-02-25T04:18:07Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-02-25T04:18:07Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=4d921409e292599df48569f4439ce7dc7d6be726'/>
<id>urn:sha1:4d921409e292599df48569f4439ce7dc7d6be726</id>
<content type='text'>
  conditionalize this on OSVER because the patch is safe everywhere. No bump
  because package doesn't change.

Submitted by:	antoine (1.9, 2.0 and 2.1 based on)
</content>
</entry>
<entry>
<title>- Fix build when newer gcc which includes a libffi is installed</title>
<updated>2014-02-10T20:22:20Z</updated>
<author>
<name>Steve Wills</name>
<email>swills@FreeBSD.org</email>
</author>
<published>2014-02-10T20:22:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=a7514f82eb7587a7d865d2dc3b6cedd67f772b15'/>
<id>urn:sha1:a7514f82eb7587a7d865d2dc3b6cedd67f772b15</id>
<content type='text'>
PR:		ports/186468
Submitted by:	Jim Ohlstein &lt;jim@ohlste.in&gt;
</content>
</entry>
<entry>
<title>- Stage support</title>
<updated>2014-02-04T14:23:51Z</updated>
<author>
<name>Martin Wilke</name>
<email>miwi@FreeBSD.org</email>
</author>
<published>2014-02-04T14:23:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=620d7d0936877d86e7c70b742bb1d5e961a8dd9c'/>
<id>urn:sha1:620d7d0936877d86e7c70b742bb1d5e961a8dd9c</id>
<content type='text'>
Reviewed by:	antoine/swills
Thanks to:	antoine (so testing)
Approved by:	swills (ruby@)
</content>
</entry>
</feed>
