aboutsummaryrefslogtreecommitdiff
path: root/audio/gramofile
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-1/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* Work around the lack of definition of union semun per POSIX.Brooks Davis2018-03-021-0/+1
| | | | | | | | | | | | | | | When feasible do this by adding -D_WANT_SEMUN to CFLAGS or CXXFLAGS. Where this fails due to ports not honoring C*FLAGS, patch using __FreeBSD_version to enable the definition. PR: 224300, 224443 (exp-run) Approved by: portmgr (antoine) Exp-run: antoine Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14137 Notes: svn path=/head/; revision=463452
* audio/gramofile: Document ncurses requirement and honor CFLAGSJohn Marino2016-11-192-6/+25
| | | | | | | While here, add DragonFly support Notes: svn path=/head/; revision=426382
* 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
* - Switch to options helpersDmitry Marakasov2015-12-272-5/+9
| | | | Notes: svn path=/head/; revision=404569
* Reset maintainerEitan Adler2015-12-141-1/+1
| | | | Notes: svn path=/head/; revision=403704
* Unbreak these by mirroring distfiles on MASTER_SITE_LOCAL.Juergen Lock2015-04-101-4/+1
| | | | Notes: svn path=/head/; revision=383749
* Mark broken unfetchable portsBaptiste Daroussin2015-04-051-0/+2
| | | | Notes: svn path=/head/; revision=383354
* Replace some occurences of mach with PERL_ARCH (and a couple of other small ↵Mathieu Arnold2014-11-071-1/+1
| | | | | | | | | | noop fixes.) With hat: perl@ Sponsored by: Absolight Notes: svn path=/head/; revision=372262
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371234
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* Quote ${CC} and similar variables in MAKE_ARGS.Tijl Coosemans2014-05-201-2/+2
| | | | | | | Reported by: Dominic Fandrey <kamikaze@bsdforen.de> Notes: svn path=/head/; revision=354670
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-101-1/+1
| | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs) Notes: svn path=/head/; revision=347809
* Stagify.Juergen Lock2014-03-011-5/+5
| | | | Notes: svn path=/head/; revision=346647
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-1/+1
| | | | | | | | | LIB_DEPENDS in audio With hat: portmgr Notes: svn path=/head/; revision=336166
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* 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 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
* - Fix build with new site_perlAndrej Zverev2013-06-121-6/+2
| | | | | | | Submitted by: ohauer@ Notes: svn path=/head/; revision=320718
* Fix build with clang.Juergen Lock2011-06-281-0/+3
| | | | Notes: svn path=/head/; revision=276607
* - Get Rid MD5 supportMartin Wilke2011-03-191-2/+0
| | | | Notes: svn path=/head/; revision=271305
* - Remove perl support for preparing devel/swig11 removal. Since no oneRong-En Fan2008-05-074-158/+2
| | | | | | | | | | | | | | | responsed my query on -ports [1], I just remove this without adding the new Audio::Gramofile found on cpan [2]. Approved by: nox (maintainer) [1] http://docs.freebsd.org/cgi/mid.cgi?20080413075128.GQ16394 [2] The corresponding port can be found at http://people.freebsd.org/~rafan/p5-Audio-Gramofile.shar http://people.freebsd.org/~rafan/libgramofile.shar Notes: svn path=/head/; revision=212782
* Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.Mark Linimon2007-09-081-7/+1
| | | | | | | | | | | Drop support for antique perl. Work done by: gabor Sponsored by: Google Summer of Code 2007 Hat: portmgr Notes: svn path=/head/; revision=199069
* Cleanup non-supported FreeBSD versionsJuergen Lock2007-04-161-4/+0
| | | | | | | | PR: ports/111659 Submitted by: Edwin Groothuis <edwin@mavetju.org> Notes: svn path=/head/; revision=190153
* Update MAINTAINER email address of my portsJuergen Lock2006-12-231-1/+1
| | | | | | | Approved by: miwi Notes: svn path=/head/; revision=180614
* Fix build on sparc64.Shaun Amott2006-12-092-2/+15
| | | | | | | | PR: ports/106168 Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer) Notes: svn path=/head/; revision=179336
* SHA256ifyEdwin Groothuis2006-01-221-0/+2
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154140
* Port doesn't build on 4.x: Missing SHM_LOCK definition in sys/shm.hEdwin Groothuis2005-11-031-0/+4
| | | | | | | Noticed by: YAPHR Notes: svn path=/head/; revision=147160
* update audio/gramofile to 1.6P+debian patchesEdwin Groothuis2005-11-0213-60/+430
| | | | | | | | | | | update to 1.6P (with perl interface), add debian patches, MASTER_SITE moved PR: ports/88199 Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> Notes: svn path=/head/; revision=146995
* - Mark it as DEPRECATED and set EXPIRATION_DATERenato Botelho2005-10-241-0/+3
| | | | | | | | | PR: ports/87924 Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br> Approved by: port broken for a long period Notes: svn path=/head/; revision=146257
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-0/+1
| | | | | | | (Part 2) Notes: svn path=/head/; revision=99920
* Cosmetic fix: use %%DOCSDIR%% macro.Sergey A. Osokin2003-10-211-2/+2
| | | | | | | | | | No functionally changes. Submitted by: Oleg Karachevtsev <ok@etrust.ru> A part of PR: 57992 Notes: svn path=/head/; revision=91809
* De-pkg-comment.Akinori MUSHA2003-02-212-1/+1
| | | | Notes: svn path=/head/; revision=76030
* machine/soundcard.h -> sys/soundcard.hPete Fritchman2002-06-071-0/+7
| | | | | | | Submitted by: bento Notes: svn path=/head/; revision=60745
* Update the WWW site.Peter Pentchev2001-06-121-1/+1
| | | | | | | | PR: 28103 Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> Notes: svn path=/head/; revision=43916
* Portlint COMMENT's.Akinori MUSHA2000-04-141-1/+1
| | | | | | | | | | Everybody should read the Handbook again! PR: ports/18008 Submitted by: tkato@prontomail.ne.jp Notes: svn path=/head/; revision=27537
* update with the new PORTNAME/PORTVERSION variablesMichael Haro2000-04-081-2/+2
| | | | Notes: svn path=/head/; revision=27415
* New port gramofile, an audio recording utility.Thomas Gellekum2000-04-077-0/+99
PR: 16819 Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> Notes: svn path=/head/; revision=27398