aboutsummaryrefslogtreecommitdiff
path: root/audio/liblo
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* devel/doxygen: Update to 1.9.0Dima Panov2021-01-082-2/+2
| | | | | | | | | | | | | | | | - regen patches by 'make makepatch' - adjust consumers which affected by new doxygen styles - take maintainersip Changelog: https://www.doxygen.nl/manual/changelog.html#log_1_9_0 PR: 242347 Submitted by: fluffy Reported by: Naram Qashat (ex-maintainer) Exp-run by: antoine Notes: svn path=/head/; revision=560752
* Attempt to fix build on powerpcspe.Mark Linimon2020-09-261-1/+1
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=550210
* audio/liblo: fix packaging on GCC architecturesPiotr Kubaj2020-04-091-1/+1
| | | | | | | | cpp_example needs C++11 compiler to be built, its lack makes it to be omitted and packaging error to happen: pkg-static: Unable to access file /wrkdirs/usr/ports/audio/liblo/work/stage/usr/local/share/examples/liblo/cpp_example:No such file or directory Notes: svn path=/head/; revision=531209
* Convert REINPLACE_CMD to patch fileSunpoet Po-Chuan Hsieh2020-04-082-2/+14
| | | | Notes: svn path=/head/; revision=531126
* Fix PORTEXAMPLES installation: install the program instead of the wrapperSunpoet Po-Chuan Hsieh2020-04-022-8/+83
| | | | | | | | - Convert PORTDOCS and PORTEXAMPLES to PLIST entries - Bump PORTREVISION for package change Notes: svn path=/head/; revision=530356
* Update to 0.31Sunpoet Po-Chuan Hsieh2020-03-013-5/+5
| | | | | | | | Changes: https://github.com/radarsat1/liblo/releases http://liblo.sourceforge.net/NEWS.html Notes: svn path=/head/; revision=527496
* Update to 0.30Sunpoet Po-Chuan Hsieh2020-02-226-57/+37
| | | | | | | | | | | - Convert to options target helper - Take maintainership Changes: http://liblo.sourceforge.net/NEWS.html https://github.com/radarsat1/liblo/releases Notes: svn path=/head/; revision=526785
* First pass at moving manpages to share/man for category a*Baptiste Daroussin2020-01-162-11/+11
| | | | Notes: svn path=/head/; revision=523220
* Reset MAINTAINER of koalative@gmail.com's portsTobias Kortkamp2019-07-041-1/+1
| | | | | | | | | There have been repeated maintainer timeout over the last 3 years. Some ports have already been reset to ports@ due to consecutive timeouts. Let's complete that work. Notes: svn path=/head/; revision=505847
* Cleanup patches, a* categories.Mathieu Arnold2016-07-262-5/+5
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412344
* Fix previous commit.Mathieu Arnold2015-08-191-0/+2
| | | | | | | | Pointy hat to: mat Sponsored by: Absolight Notes: svn path=/head/; revision=394780
* Convert ports to use the options helpers in categories [abc]*, and minor fixes.Mathieu Arnold2015-08-191-7/+4
| | | | | | | | Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3412? Notes: svn path=/head/; revision=394778
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-082-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=374303
* Fix audio/liblo build with clang 3.5.0Dimitry Andric2014-12-031-0/+13
| | | | | | | | | | | | | | | | | | | | | | On 64-bit arches, audio/liblo will fail to compile with clang 3.5.0, due to the following -Werror warning: message.c:1000:17: error: absolute value function 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value] abs((char *) d - (char *) end), m); ^ On 64-bit arches, pointer differences are usually longs, but simply replacing the abs() call with labs() is also not a good solution, because then the code is incorrect for 32-bit arches. Fix this by using a ternary operator expression, which is type-safe. While here, fix the printf format conversion specifier for printing ptrdiff_t's. Approved by: portmgr (antoine) Notes: svn path=/head/; revision=373852
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371234
* - Unbreak the build on PowerPC and consumers' builds on i386Alexey Dokuchaev2014-08-123-27/+33
| | | | | | | | | | | | - Make DOXYGEN builddep optional (and off by default) - Sort USES values alphabetically - Simplify Makefile a bit (get rid of DOCSRCDIR1 and DOC_FILES1) - Remove traces of markdown in pkg-descr (unsupported in ports) Approved by: maintainer Notes: svn path=/head/; revision=364706
* - Add missing USES=libtoolDmitry Marakasov2014-06-161-1/+2
| | | | Notes: svn path=/head/; revision=358000
* These ports are no longer used or cared for.Rusmir Dusko2014-05-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dave Shar <koalative at gmail.com> wishes to maintain these ports with my help. audio/liblo - Pass maintainership to koalative at gmail.com cad/brickutils - Bump PORTREVISION for adding PDF - Add DIST_SUBDIR because more files - Pass maintainership to koalative at gmail.com - Add PDF to DOCS cad/ldraw - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Break lines around 80 characters - Cosmetical changes cad/leocad - Update to 0.80.3, Announce message: Fixed mouse coordinates in OSX retina displays. Fixed shortcuts in the parts tree. - Pass maintainership to koalative at gmail.com - Remove TODO.txt from DOCS - Add more supplied icons textproc/unoconv - Pass maintainership to koalative at gmail.com Notes: svn path=/head/; revision=354257
* - Update to 0.28Rusmir Dusko2014-01-313-6/+15
| | | | | | | | | - Add SHLIB_VER and PLIST_SUB - Strip library - Break lines around 80 characters Notes: svn path=/head/; revision=342059
* - Change maintainer email to @FreeBSD.orgRusmir Dusko2013-11-082-21/+17
| | | | | | | | | | - Remove DOXYGEN Option - Support STAGEDIR Approved by: pawel / wg (mentors, implicit) Notes: svn path=/head/; revision=333166
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | audio) Notes: svn path=/head/; revision=327706
* Fix typosBaptiste Daroussin2013-08-301-1/+1
| | | | Notes: svn path=/head/; revision=325729
* Convert audio from USE_GMAKE to USES=gmakeBaptiste Daroussin2013-08-301-2/+1
| | | | | | | | | | | While here: - Trim headers - Convert some USE_GNOME=pkgconfig to USES=pkgconfig - Add some missing pkgconf dependencies - Convert some USE_GNOME=gnomehack to USES=pathfix Notes: svn path=/head/; revision=325727
* From the (new) maintainer:Daniel Eischen2013-07-126-65/+67
| | | | | | | | | | | | | | | | | | | | | | | | - Update to 0.27 - Take maintainership - Shorten header - Add license (LGPL21) - Add dependency for devel/doxygen - Add manual pages - Add docs - Add examples - Add DOCS DOXYGEN EXAMPLES Options - Trim files/patch-src-lo_types_internal.h - Remove not needed patch files/patch-src-server.c - Trim pkg-descr - Trim pkg-plist Note that the previous maintainer was ports@. PR: 179916 Submitted by: nemysis at gmx dot ch (new maintainer) Notes: svn path=/head/; revision=322859
* Style: tab -> space.Eitan Adler2013-03-281-1/+1
| | | | | | | Most contributors copy an existing port when writing their own so reduce the number of bad examples in the tree. Notes: svn path=/head/; revision=315487
* This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.Eitan Adler2013-03-191-1/+1
| | | | | | | | | | | | If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314640
* - Remove WITH_FBSD10_FIX, is no longer neededMartin Wilke2011-11-091-1/+0
| | | | Notes: svn path=/head/; revision=285379
* - Fix build with FreeBSD 10Martin Wilke2011-10-291-0/+1
| | | | | | | Reported by: ph Notes: svn path=/head/; revision=284624
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Drop maintainership for ports I can't maintain anymore.Edward Tomasz Napierala2010-10-251-1/+1
| | | | Notes: svn path=/head/; revision=263585
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with A Notes: svn path=/head/; revision=240066
* Update audio/liblo to 0.26.Edward Tomasz Napierala2009-03-314-9/+9
| | | | Notes: svn path=/head/; revision=231341
* - Update to 0.25.Edward Tomasz Napierala2008-07-223-5/+7
| | | | Notes: svn path=/head/; revision=217290
* - Use proper capitalization in my email address.Edward Tomasz Napierala2007-07-111-1/+1
| | | | | | | | Approved by: miwi (mentor) Suggested by: sat Notes: svn path=/head/; revision=195441
* Remove workarounds for FreeBSD 4.Edward Tomasz Napierala2007-04-171-7/+1
| | | | | | | | | PR: ports/111670 Submitted by: edwin Approved by: miwi (mentor) Notes: svn path=/head/; revision=190186
* Change my email address to trasz@FreeBSD.org.Edward Tomasz Napierala2007-04-131-1/+1
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=189901
* - Update to 0.24Martin Wilke2007-03-263-18/+7
| | | | | | | | PR: 110756 Submitted by: trasz (maintainer) Notes: svn path=/head/; revision=188386
* - Fix crash with testloMartin Wilke2007-01-232-3/+13
| | | | | | | | | | - Bump PORTREVISION PR: 108219 Submitted by: trasz (maintainer) Notes: svn path=/head/; revision=183093
* - Fix problem that made it impossible to use GUI for DSSI modules.Martin Wilke2007-01-222-0/+44
| | | | | | | | PR: ports/108119 Submitted by: trasz (maintainer) Notes: svn path=/head/; revision=182962
* liblo is an implementation of the Open Sound ControlMartin Wilke2006-12-045-0/+58
protocol for POSIX systems. WWW: http://liblo.sourceforge.net/ PR: ports/106353 Submitted by: trasz <trasz at pin.if.uz.zgora.pl> Notes: svn path=/head/; revision=178904