<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/multimedia/libmpeg3, branch pkgsrc-2015Q2</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc-2015Q2</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc-2015Q2'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2015-04-26T13:29:42Z</updated>
<entry>
<title>Drop pointless ONLY_FOR_COMPILER.</title>
<updated>2015-04-26T13:29:42Z</updated>
<author>
<name>joerg</name>
<email>joerg@pkgsrc.org</email>
</author>
<published>2015-04-26T13:29:42Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=f07a0bfa898a7eb46f3ae47ea50d419158779017'/>
<id>urn:sha1:f07a0bfa898a7eb46f3ae47ea50d419158779017</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.</title>
<updated>2012-10-08T09:20:57Z</updated>
<author>
<name>asau</name>
<email>asau@pkgsrc.org</email>
</author>
<published>2012-10-08T09:20:57Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=04a5a3626d07f479d3e2122261c3c6b9406ec8c1'/>
<id>urn:sha1:04a5a3626d07f479d3e2122261c3c6b9406ec8c1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>improve description and clarify COMMENT</title>
<updated>2012-07-28T21:40:09Z</updated>
<author>
<name>reed</name>
<email>reed@pkgsrc.org</email>
</author>
<published>2012-07-28T21:40:09Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=adac5b6c8a37058c6e9267bd355813413b18fff8'/>
<id>urn:sha1:adac5b6c8a37058c6e9267bd355813413b18fff8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)</title>
<updated>2012-05-07T01:53:12Z</updated>
<author>
<name>dholland</name>
<email>dholland@pkgsrc.org</email>
</author>
<published>2012-05-07T01:53:12Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=0bcdacfbcf0a1f7f4455399808295e6e6f7e01bc'/>
<id>urn:sha1:0bcdacfbcf0a1f7f4455399808295e6e6f7e01bc</id>
<content type='text'>
It turns out there were a lot of these.</content>
</entry>
<entry>
<title>Remove @dirrm entries from PLISTs</title>
<updated>2009-06-14T18:03:28Z</updated>
<author>
<name>joerg</name>
<email>joerg@pkgsrc.org</email>
</author>
<published>2009-06-14T18:03:28Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=24151e2b9991726fa4bcd0ace9289f45de0f325e'/>
<id>urn:sha1:24151e2b9991726fa4bcd0ace9289f45de0f325e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix a patch to be MAKE_JOBS_SAFE=yes.</title>
<updated>2009-05-26T08:49:27Z</updated>
<author>
<name>obache</name>
<email>obache@pkgsrc.org</email>
</author>
<published>2009-05-26T08:49:27Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=e78828d1e26ff6f072c7be3e64a0e028f37511dd'/>
<id>urn:sha1:e78828d1e26ff6f072c7be3e64a0e028f37511dd</id>
<content type='text'>
Reported by PR 41491.</content>
</entry>
<entry>
<title>Mark as not make-jobs safe.</title>
<updated>2009-05-26T08:14:15Z</updated>
<author>
<name>wiz</name>
<email>wiz@pkgsrc.org</email>
</author>
<published>2009-05-26T08:14:15Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=05b02e92c292a1cb2ad537da14316e84d49d0142'/>
<id>urn:sha1:05b02e92c292a1cb2ad537da14316e84d49d0142</id>
<content type='text'>
From Ryo HAYASAKA in PR 41491.</content>
</entry>
<entry>
<title>Simply and speed up buildlink3.mk files and processing.</title>
<updated>2009-03-20T19:23:50Z</updated>
<author>
<name>joerg</name>
<email>joerg@pkgsrc.org</email>
</author>
<published>2009-03-20T19:23:50Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=2d1ba244e90207d03eef397a99aa4091baeec5b3'/>
<id>urn:sha1:2d1ba244e90207d03eef397a99aa4091baeec5b3</id>
<content type='text'>
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.</content>
</entry>
<entry>
<title>Improve patch for DragonFlyBSD -- fixes compilation.</title>
<updated>2009-02-23T13:24:30Z</updated>
<author>
<name>wiz</name>
<email>wiz@pkgsrc.org</email>
</author>
<published>2009-02-23T13:24:30Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=5b9315eb7ed950afd3f6e50680c64ed2d22568a1'/>
<id>urn:sha1:5b9315eb7ed950afd3f6e50680c64ed2d22568a1</id>
<content type='text'>
No change for other platforms, so no PKGREVISION bump.

Patch from Steve O'Hara-Smith on pkgsrc-users.</content>
</entry>
<entry>
<title>Updated multimedia/libmpeg3 to 1.8</title>
<updated>2009-01-29T17:53:49Z</updated>
<author>
<name>abs</name>
<email>abs@pkgsrc.org</email>
</author>
<published>2009-01-29T17:53:49Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=2902b40f8ce95eefecc301e31f4f04f43d257881'/>
<id>urn:sha1:2902b40f8ce95eefecc301e31f4f04f43d257881</id>
<content type='text'>
1.8 - Better table of contents generation &amp; handling of ID3 tags.

pkgsrc changes:
	- Fix broken build on NetBSD by reworking the mares nest of
	  non Linux #ifdefs in mpeg3io.c - build was broken by a
	  previous __DragonFly__ or __APPLE_ build fix
	- Add new patch for 1.8 to avoid Linux DVD ioctls</content>
</entry>
</feed>
