<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/sysutils/dar, 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-07-30T03:57:23Z</updated>
<entry>
<title>security/libgcrypt: 1.5.3_3 -&gt; 1.6.1</title>
<updated>2014-07-30T03:57:23Z</updated>
<author>
<name>Kurt Jaeger</name>
<email>pi@FreeBSD.org</email>
</author>
<published>2014-07-30T03:57:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b95d127471e2fd17cc8d189dbeec094e3ff556db'/>
<id>urn:sha1:b95d127471e2fd17cc8d189dbeec094e3ff556db</id>
<content type='text'>
- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
  https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
  https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
  security/shishi with PR 192164 is already committed
  [1] devel/ccrtp
  [2] editors/abiword
  [3] security/p5-Crypt-GCrypt

PR:		191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by:	Carlos Jacobo Puga Medina &lt;cjpugmed@gmail.com&gt;
Approved by:	maintainer timeout, antoine (exp-run), portmgr (implicit)
</content>
</entry>
<entry>
<title>sysutils/dar: Use alternate sed argument to unbreak DragonFly</title>
<updated>2014-06-21T08:19:04Z</updated>
<author>
<name>John Marino</name>
<email>marino@FreeBSD.org</email>
</author>
<published>2014-06-21T08:19:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=70bd6b07f22ebd1e25b78dbb5f40aab6d70a79c9'/>
<id>urn:sha1:70bd6b07f22ebd1e25b78dbb5f40aab6d70a79c9</id>
<content type='text'>
The new version of dar uses the gnu sed -r switch which is not recognized
by DragonFly's BSD sed.  Switch this to the equivalent -E switch so both
FreeBSD and DragonFly are happy.

Approved by:	general blanket
</content>
</entry>
<entry>
<title>sysutils/dar: add gcrypt option</title>
<updated>2014-06-18T17:09:23Z</updated>
<author>
<name>William Grzybowski</name>
<email>wg@FreeBSD.org</email>
</author>
<published>2014-06-18T17:09:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=5bf16feb924717b2f773ba9af75f3ca5e642116a'/>
<id>urn:sha1:5bf16feb924717b2f773ba9af75f3ca5e642116a</id>
<content type='text'>
- Pass maintainership to submitter

PR:		191153
Submitted by:	Muhammad Moinur Rahman
</content>
</entry>
<entry>
<title>- Update to 2.4.14</title>
<updated>2014-06-17T15:49:42Z</updated>
<author>
<name>Martin Wilke</name>
<email>miwi@FreeBSD.org</email>
</author>
<published>2014-06-17T15:49:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=792b9ad102969c0921bd9ac261a054c053ba146c'/>
<id>urn:sha1:792b9ad102969c0921bd9ac261a054c053ba146c</id>
<content type='text'>
PR:		191098
</content>
</entry>
<entry>
<title>- Update to 2.4.13</title>
<updated>2014-06-14T05:54:18Z</updated>
<author>
<name>Martin Wilke</name>
<email>miwi@FreeBSD.org</email>
</author>
<published>2014-06-14T05:54:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=299a2dd79f66757f87a6f263328196d6e0409882'/>
<id>urn:sha1:299a2dd79f66757f87a6f263328196d6e0409882</id>
<content type='text'>
PR:		190903
Submitted by:	ports fury
</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>- Switch to USES=libtool, drop .la files</title>
<updated>2014-05-27T14:20:23Z</updated>
<author>
<name>Dmitry Marakasov</name>
<email>amdmi3@FreeBSD.org</email>
</author>
<published>2014-05-27T14:20:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=9b5d5b085543adab3a006466c1a6c3d3ad4df6da'/>
<id>urn:sha1:9b5d5b085543adab3a006466c1a6c3d3ad4df6da</id>
<content type='text'>
- Strip libraries
</content>
</entry>
<entry>
<title>- Update to 2.4.12</title>
<updated>2014-02-27T16:06:53Z</updated>
<author>
<name>Philippe Audeoud</name>
<email>jadawin@FreeBSD.org</email>
</author>
<published>2014-02-27T16:06:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=8d7e8b2823d65fb726bcadea24738dbc26ee149b'/>
<id>urn:sha1:8d7e8b2823d65fb726bcadea24738dbc26ee149b</id>
<content type='text'>
PR:		ports/186742
Submitted by:	KATO Tsuguru &lt;tkato432@yahoo.com&gt;
</content>
</entry>
<entry>
<title>Define DOCS in OPTIONS_DEFINE.</title>
<updated>2014-02-10T13:58:28Z</updated>
<author>
<name>Emanuel Haupt</name>
<email>ehaupt@FreeBSD.org</email>
</author>
<published>2014-02-10T13:58:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=4d1bd2432d9c10f833f4d644914e74fae8e48843'/>
<id>urn:sha1:4d1bd2432d9c10f833f4d644914e74fae8e48843</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- USE_GCC is needed on FreeBSD &gt; 10</title>
<updated>2014-02-10T13:49:21Z</updated>
<author>
<name>Philippe Audeoud</name>
<email>jadawin@FreeBSD.org</email>
</author>
<published>2014-02-10T13:49:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=e4eefd3f1e344c567f932fef63a6f04a0bb4eba4'/>
<id>urn:sha1:e4eefd3f1e344c567f932fef63a6f04a0bb4eba4</id>
<content type='text'>
- Release maintainership

PR:		ports/186534
Submitted by:	olgeni@
</content>
</entry>
</feed>
