aboutsummaryrefslogtreecommitdiff
path: root/audio/libfishsound
Commit message (Collapse)AuthorAgeFilesLines
* - Use INSTALL_TARGET=install-strip instead of STRIP_CMDSunpoet Po-Chuan Hsieh2015-01-181-3/+1
| | | | Notes: svn path=/head/; revision=377360
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371234
* - Strip shared library in post-install:Sunpoet Po-Chuan Hsieh2014-06-181-3/+3
| | | | Notes: svn path=/head/; revision=358281
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-06-162-5/+5
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=357978
* - Update LICENSESunpoet Po-Chuan Hsieh2013-12-131-1/+1
| | | | Notes: svn path=/head/; revision=336301
* - Strip shared librarySunpoet Po-Chuan Hsieh2013-11-301-3/+4
| | | | | | | | | | - Fix packaging with pkgng [1] - Cleanup Makefile Reported by: pkg-fallout [1] Notes: svn path=/head/; revision=335252
* - Support STAGEDIRSunpoet Po-Chuan Hsieh2013-11-251-1/+1
| | | | Notes: svn path=/head/; revision=334832
* 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
* - Convert to new LIB_DEPENDS formatSunpoet Po-Chuan Hsieh2013-09-031-5/+6
| | | | | | | - Move PORTDOCS upward Notes: svn path=/head/; revision=326205
* Eliminate USE_GNOME=pkgconfig from audioBaptiste Daroussin2013-09-021-1/+1
| | | | | | | | | | | While here: - trim headers - convert USE_GMAKE -> USES=gmake - convert USE_GNOME=gnomehack -> USES=pathfix - convert USE_PERL5 -> USES=perl5 Notes: svn path=/head/; revision=325966
* - Use !${PORT_OPTIONS:Mfoo} instead of empty(PORT_OPTIONS:Mfoo)Sunpoet Po-Chuan Hsieh2013-08-251-1/+1
| | | | Notes: svn path=/head/; revision=325358
* - Remove leading indefinite article from COMMENTSunpoet Po-Chuan Hsieh2013-08-211-1/+1
| | | | Notes: svn path=/head/; revision=325161
* * Major update to FLAC 1.3.0, including shared library bumps.Christian Weisgerber2013-06-091-1/+1
| | | | | | | | | * Chase the update in dependent ports. PR: 179072 Notes: svn path=/head/; revision=320405
* - Add LICENSESunpoet Po-Chuan Hsieh2012-12-041-2/+4
| | | | | | | | | - Move OPTIONS_* upward Feature safe: yes Notes: svn path=/head/; revision=308271
* - Cleanup Makefile headerSunpoet Po-Chuan Hsieh2012-10-072-9/+5
| | | | | | | - Convert to new options framework Notes: svn path=/head/; revision=305465
* libogg.so.8: Bump PORTREVISION for ports that depend on libogg,Christian Weisgerber2012-07-191-0/+1
| | | | | | | directly or indirectly (via libvorbis, libtheora). Notes: svn path=/head/; revision=301188
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* - Use LOCAL/sunpoet as backup MASTER_SITESSunpoet Po-Chuan Hsieh2010-10-011-1/+1
| | | | | | | Approved by: pgollucci (mentor) Notes: svn path=/head/; revision=262220
* - Update MAINTAINER to my FreeBSD.org addressSunpoet Po-Chuan Hsieh2010-09-221-1/+1
| | | | | | | Approved by: pgollucci (mentor) Notes: svn path=/head/; revision=261634
* libfishsound provides a simple programming interface for decoding and encodingDmitry Marakasov2010-08-054-0/+70
audio data using the Xiph.org codecs (FLAC, Speex and Vorbis). libfishsound by itself is designed to handle raw codec streams from a lower level layer such as UDP datagrams. When these codecs are used in files, they are commonly encapsulated in Ogg to produce Ogg FLAC, Speex and Ogg Vorbis files. libfishsound is a wrapper around the existing codec libraries and provides a consistent, higher-level programming interface. It has been designed for use in a wide variety of applications; it has no direct dependencies on Ogg encapsulation, though it is most commonly used in conjunction with liboggz to decode or encode FLAC, Speex or Vorbis audio tracks in Ogg files, including Ogg Theora and Annodex. WWW: http://www.xiph.org/fishsound/ PR: 147332 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> Notes: svn path=/head/; revision=258836