aboutsummaryrefslogtreecommitdiff
path: root/audio/tosha
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* audio/tosha: Fix build on 12.0-CURRENTTobias Kortkamp2018-07-081-0/+9
| | | | | | | | | | | | | | | In file included from tosha.c:42: In file included from ./toscsi.h:43: In file included from /usr/include/cam/cam_ccb.h:46: In file included from /usr/include/cam/nvme/nvme_all.h:33: /usr/include/dev/nvme/nvme.h:1335:8: error: unknown type name 'inline' static inline ^ http://beefy11.nyi.freebsd.org/data/head-i386-default/p473363_s335650/logs/tosha-0.6_1.log Notes: svn path=/head/; revision=474168
* Cleanup patches, a* categories.Mathieu Arnold2016-07-265-88/+57
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Allow staging as a regular userAntoine Brodin2014-09-071-7/+9
| | | | Notes: svn path=/head/; revision=367605
* Rename audio/ patch-xy patches to reflect the files they modify.Adam Weinberger2014-07-281-0/+0
| | | | Notes: svn path=/head/; revision=363157
* - Support stagingEmanuel Haupt2014-02-163-7/+29
| | | | | | | - Add LICENSE Notes: svn path=/head/; revision=344532
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | audio) Notes: svn path=/head/; revision=327706
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* For ports maintained by ports@FreeBSD.org, remove names and/orDoug Barton2009-12-211-2/+0
| | | | | | | | | | | e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports. Notes: svn path=/head/; revision=246327
* - Unbreak after strndup MFC [1]Martin Wilke2009-03-014-10/+45
| | | | | | | | | | - Move to PLIST_FILES PR: 132067 Submitted by: Florian Smeets <flo@kasimir.com> Notes: svn path=/head/; revision=229277
* Also mark BROKEN on recent 7 after the MFC of strndup(3).Erwin Lansing2009-02-111-1/+1
| | | | | | | Submitted by: pointyhat Notes: svn path=/head/; revision=228037
* Mark BROKEN on HEAD after the import of strndup(3).Erwin Lansing2008-12-251-1/+7
| | | | | | | | | As OSVERSION was not bumped at the time, approximate with 800058. Submitted by: pointyhat Notes: svn path=/head/; revision=224739
* A few typo fixes for ports/audio descriptions.Jimmy Olgeni2008-06-151-1/+1
| | | | Notes: svn path=/head/; revision=214897
* - Add some SHA256 checksumsPav Lucistnik2005-11-231-0/+1
| | | | Notes: svn path=/head/; revision=149221
* Add SIZE.Trevor Johnson2004-01-271-0/+1
| | | | Notes: svn path=/head/; revision=99295
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75951
* o Rollback PORTCOMMENT modifications while this feature's implementationMario Sergio Fujikawa Ferreira2002-11-102-2/+1
| | | | | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence) Notes: svn path=/head/; revision=69808
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.Adam Weinberger2002-11-062-1/+2
| | | | | | | Approved by: pat Notes: svn path=/head/; revision=69612
* Fix build problem on 5-current.Motoyuki Konno2002-04-111-0/+11
| | | | | | | | <machine/soundcard.h> is moved to <sys/soundcard.h> on both 4-stable and 5-current. See commitlog of src/include/Makefile rev 1.165. Notes: svn path=/head/; revision=57551
* Master sites missing, changed to MASTER_SITE_LOCAL.Mark Pulford2001-06-261-2/+3
| | | | | | | | | Maintainer timeout, changed to ports. PR: 27533 Notes: svn path=/head/; revision=44443
* Bump PORTREVISION due to bugfixes on 2001-02-07Kris Kennaway2001-02-181-0/+1
| | | | | | | Forgotten by: ken Notes: svn path=/head/; revision=38448
* Add a couple of fixes for compiler warnings from PR 23755, which alsoKenneth D. Merry2001-02-071-1/+54
| | | | | | | | | | addresses the core dump problem I fixed in the last version of this patch. PR: ports/23755 Submitted by: Kentaro Inagaki <inagaki@tg.rim.or.jp> Notes: svn path=/head/; revision=38079
* Fix a core dump when doing 'tosha -i'. (Maintainer timeout after about twoKenneth D. Merry2001-02-071-0/+23
| | | | | | | | | | | | | | | months.) The problem is in resolve_extension(). strncpy() will only null-terminate the destination string if it has enough room, according to the given length. In this implementation, there will never be enough room to null-terminate the string, from what I can tell. So if the memory in 'tmpstr' contains non-nulls, you'll get a core-dump in the subsequent strcat(). Notes: svn path=/head/; revision=38076
* update with the new PORTNAME/PORTVERSION variablesMichael Haro2000-04-081-2/+2
| | | | Notes: svn path=/head/; revision=27415
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
| | | | Notes: svn path=/head/; revision=20938
* As threatened, enforce the "Capital, no period" rule. Ellipses areTim Vanderhoek1999-06-261-1/+1
| | | | | | | | permitted. Note that, given current numeric motif of PW, this is done in four equally-sized commits of 393 files each. Notes: svn path=/head/; revision=19799
* Update to 0.6. Cool new stuff includes:Matthew Hunt1999-01-025-12/+20
| | | | | | | | | | | | - CAM support without patches - Directly writes wav, aiff, and other formats besides pcm - I don't get funny errors with my IBM-branded Toshiba drive :-) PR: 9267 Submitted by: oliver.fromme@heim3.tu-clausthal.de (author & maintainer) Notes: svn path=/head/; revision=15791
* It's not that ports/astro/* had no manpages to remove from theirTim Vanderhoek1998-08-171-3/+0
| | | | | | | | PLISTs, it's just that none of the ones that do use the MANx variables. Notes: svn path=/head/; revision=12569
* - modified Makefile, to use CFLAGS form /etc/make.confAndreas Klemm1997-05-252-8/+11
| | | | | | | | | | | | | | - reformatted DESCR - removed manpage compression from tosha's Makefile and added manpages in the ports Makefile (MAN1) so that the port is now aware of NOMANCOMPRESS PR: Reviewed by: Submitted by: Obtained from: Notes: svn path=/head/; revision=6558
* Imported new audio port tosha.Andreas Klemm1997-05-255-0/+31
tosha: read CD digital audio data through the SCSI bus. PR: closes PR 3652 Submitted by: oliver.fromme@heim3.tu-clausthal.de (Oliver Fromme) Notes: svn path=/head/; revision=6555