aboutsummaryrefslogtreecommitdiff
path: root/audio/rioutil
Commit message (Collapse)AuthorAgeFilesLines
* Four audio ports: USES+= alias (for DF)John Marino2016-12-181-1/+1
| | | | Notes: svn path=/head/; revision=428814
* ${RM} already has -f.Mathieu Arnold2016-10-211-1/+1
| | | | | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=424411
* Cleanup patches, a* categories.Mathieu Arnold2016-07-261-3/+3
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"Dmitry Marakasov2016-01-121-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=405891
* - Add LICENSEDmitry Marakasov2015-11-145-47/+27
| | | | | | | | - Switch to USES=autoreconf - Clean the port up Notes: svn path=/head/; revision=401569
* Rename all patches that contain '::' as a path separator, and useAdam Weinberger2014-07-291-0/+0
| | | | | | | '__' instead. Notes: svn path=/head/; revision=363362
* (no commit message)Dmitry Marakasov2014-05-302-5/+4
| | | | Notes: svn path=/head/; revision=355906
* - Stage supportMartin Wilke2014-02-142-3/+1
| | | | Notes: svn path=/head/; revision=344270
* 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-1/+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
* Drop support for old versions of FreeBSD from unmaintained portsEitan Adler2013-03-281-4/+0
| | | | | | | Reviewed by: miwi Notes: svn path=/head/; revision=315474
* For unmaintained ports in `audio' category, drop leading article from COMMENTAlexey Dokuchaev2013-03-131-6/+2
| | | | | | | and perform other minor cleanups along the way, whenever noticed. Notes: svn path=/head/; revision=314074
* Fix typos in COMMENTCarlo Strub2012-07-241-1/+1
| | | | Notes: svn path=/head/; revision=301441
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-2/+2
| | | | Notes: svn path=/head/; revision=265663
* Punt autoconf267->autoconf268Ade Lovett2010-10-161-1/+1
| | | | Notes: svn path=/head/; revision=263089
* Autotools update. Read ports/UPDATING 20100915 for details.Ade Lovett2010-09-151-1/+2
| | | | | | | | Approved by: portmgr (for Mk/bsd.port.mk part) Tested by: Multiple -exp runs Notes: svn path=/head/; revision=261230
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* - Chase libusb20 rename in r189585.Stanislav Sedov2009-03-092-4/+28
| | | | | | | | | | | - Mark sane-backends broken on current due to changes in USB stack. Reviewed by: thompsa (old version), miwi Tested by: miwi Notes: svn path=/head/; revision=229765
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* - Update to 1.5.0Martin Wilke2008-02-154-41/+27
| | | | | | | Submitted by: Fabian Ruch Notes: svn path=/head/; revision=207275
* - Fix the build with GCC 4.2 [1]Alexey Dokuchaev2007-07-022-9/+8
| | | | | | | | | | - Drop old-school USE_GETOPT_LONG - Tidy up Makefile and pkg-descr Reported by: pointyhat (logs) [1] Notes: svn path=/head/; revision=194659
* Use libtool port instead of included version to avoid objformat a.out botchKris Kennaway2007-02-011-0/+1
| | | | Notes: svn path=/head/; revision=183830
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gCheng-Lung Sung2006-08-141-1/+1
| | | | | | | | | | - these include astro/ audio/ biology/ chinese/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> Notes: svn path=/head/; revision=170572
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* - Add some SHA256 checksumsPav Lucistnik2005-11-231-0/+1
| | | | Notes: svn path=/head/; revision=149221
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* - update to libusb-0.1.10aYen-Ming Lee2005-04-131-1/+1
| | | | | | | | | | - bump library version to all ports that depends on libusb PR: 79084 Submitted by: John Reynolds <johnjen@reynoldsnet.org> Notes: svn path=/head/; revision=133226
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992
* Update to version 1.4.6Kirill Ponomarev2004-08-226-62/+63
| | | | | | | | PR: ports/70783 Submitted by: Ports Fury Notes: svn path=/head/; revision=116995
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-1/+1
| | | | | | | (Part 2) Notes: svn path=/head/; revision=99920
* Add SIZE.Trevor Johnson2004-01-271-0/+1
| | | | Notes: svn path=/head/; revision=99295
* get rid of libgnugetopt dependency for -CURRENT,FUJISHIMA Satsuki2003-07-142-25/+5
| | | | | | | use USE_GETOPT_LONG instead. Notes: svn path=/head/; revision=84842
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75951
* Fix PORTCOMMENTs that were killing INDEX builds.Adam Weinberger2002-11-072-2/+1
| | | | | | | | 105 pointy hats to: me Approved by: pat Notes: svn path=/head/; revision=69625
* 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
* Backout previous change - it seems that new revision of the patch doesn'tMaxim Sobolev2001-12-201-17/+8
| | | | | | | | | apply everywhere. Submitted by: Todd Punderson <todd@doonga.net> Notes: svn path=/head/; revision=51877
* Don't filter libc_r on 5-CURRENT.Maxim Sobolev2001-12-191-8/+17
| | | | Notes: svn path=/head/; revision=51864
* Update to 1.0.6 and nolonger depends on id3libPatrick Li2001-12-156-45/+15
| | | | Notes: svn path=/head/; revision=51550
* Don't link in libc - FreeBSD doesn't need this.Maxim Sobolev2001-10-311-4/+14
| | | | | | | Submitted by: Ports Fury Notes: svn path=/head/; revision=49417
* - Correct pkg-plist - don't use absolute pathnames there;Maxim Sobolev2001-10-114-9/+57
| | | | | | | | - don't install useless .la file; - use libgnugetopt in rioutil(1). Notes: svn path=/head/; revision=48681
* Drop maintainership.George C A Reid2001-10-091-1/+1
| | | | Notes: svn path=/head/; revision=48601
* add forgotten patchfilesAlfred Perlstein2001-09-282-0/+46
| | | | Notes: svn path=/head/; revision=48236
* Rioutil 1.0.0 port.Alfred Perlstein2001-09-285-0/+40
Obtained from: greid Notes: svn path=/head/; revision=48235