aboutsummaryrefslogtreecommitdiff
path: root/sysutils/cdrdao
Commit message (Collapse)AuthorAgeFilesLines
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Update to 1.2.4, which is mostly a maintainance release and allows to getMarius Strobl2018-06-1316-174/+51
| | | | | | | | | | | | | | | | | | | | | | | | | rid of some local patches: o Fixed autocon warnings (Denis Leroy) o Ported to lame 3.100 (from Fedora) o G++ compile fixes (Nick Bailey) o Renamed xdao folder to gcdmaster (Denis Leroy) o pccts format security patch (from Fedora) o Fixed compile issues with glibc >= 2.12 o Gcdmaster segfault fix (Adrian Knoth) o Prevent a FTBFS on kfreebsd (Christoph Egger) o Fix printf format security issues (Frantisek Kluknavsky Fedora) o Add missing options to man page (Honza Horak) o CD_TEXT fix for HL-DT-ST (Kees Cook) o Man page hyphen fixes (Markus Koschany) o Some updates to the old scsilib smake files (Ubuntu patches) While at it, pet portlint. Security: yes Notes: svn path=/head/; revision=472345
* Fix port builds for architectures which remain on gcc as the default compiler.Mark Linimon2018-06-111-5/+1
| | | | | | | | | | | | | | | | | This will primarily help powerpc64. For archs where clang is the default compiler, these changes will have no effect, as the base compiler already has these capabilities (primarily, but not exclusively, c++-11). Tested for no-harm on amd64. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=472160
* Fix build of toc2mp3 after update of audio/lame to version 3.100.Marius Strobl2018-01-111-0/+24
| | | | | | | PR: 225038 Notes: svn path=/head/; revision=458797
* Remove WANT_GNOME and HAVE_GNOME.Mathieu Arnold2017-10-121-1/+0
| | | | | | | | | Approved by: bapt kwm Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12643 Notes: svn path=/head/; revision=451901
* - Unsilence installation commandsDmitry Marakasov2017-07-271-26/+29
| | | | | | | | | - Switch to options helpers Approved by: portmgr blanket Notes: svn path=/head/; revision=446760
* Mark some ports failing on power64. In cases where the error messageMark Linimon2017-05-201-0/+4
| | | | | | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Reported by: swills Notes: svn path=/head/; revision=441309
* Fix build with TOC2MP3 set after the switch to USE_CXXSTD=c++11 in r439255.Marius Strobl2017-05-041-0/+2
| | | | | | | PR: 219064 Notes: svn path=/head/; revision=440113
* Refine r439912 and properly deal with the devel/glibmm API breakageMarius Strobl2017-05-031-1/+1
| | | | | | | introduced with r437481. Notes: svn path=/head/; revision=440045
* Catch up with a devel/glibmm API breakage introduced with r437481.Marius Strobl2017-05-011-0/+2
| | | | Notes: svn path=/head/; revision=439912
* Fix another piece of code to build with -std=c++11.Marius Strobl2017-04-301-0/+11
| | | | Notes: svn path=/head/; revision=439848
* Catch up with a devel/libsigc++20 API breakage introduced with r437480.Marius Strobl2017-04-291-0/+2
| | | | Notes: svn path=/head/; revision=439712
* - Move the inclusion of bsd.port.pre.mk up slightly so ${UNAME} is alsoMarius Strobl2017-04-244-2/+112
| | | | | | | | | | | | available in the gcdmaster slave port at the required point in time (it's unclear why this was no problem with the cdrdao port before). [1] - Copy over the cdrtools patches from r427613 in order to fix the build with clang 3.9.0. Reported by: Jonathan Chen [1] Notes: svn path=/head/; revision=439345
* - Fix build on armv6 and mips and most likely also on aarc64 and mips64. [1]Marius Strobl2017-04-235-14/+77
| | | | | | | | | | | | - Let's see whether specifying USE_CXXSTD=c++11 stops the flood of pkg-fallout SPAM regarding gcdmaster caused by the update of devel/libsigc++20 to 2.10.0 in r437480. PR: 217074 [1] Submitted by: mmel (partially) [1] Notes: svn path=/head/; revision=439255
* The output of tools like awk, date, sort, tr,... depends on the currentTijl Coosemans2017-01-181-1/+1
| | | | | | | | | | | | | | | | | | | | | locale set by the user. Add LANG=C and LC_ALL=C at the beginning of bsd.port.mk and export them so all commands are executed with the C locale. LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3) as default value for LC_* variables, so normally it isn't used when LC_ALL is set, but there's code out there that looks at LANG directly so it's safer to set it as well. The only commands not captured by this are != assignments before any inclusion of bsd.port.*mk. Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a different locale (e.g. USE_LOCALE=en_US.UTF-8). PR: 215882 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=431796
* Mark as broken on various tier-2 archs.Mark Linimon2016-11-161-0/+5
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=426201
* Prevent collision with getline(3)Baptiste Daroussin2016-07-301-0/+3
| | | | Notes: svn path=/head/; revision=419290
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-7/+7
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Fix sysutils/gcdmasterMathieu Arnold2015-05-141-1/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=386315
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-1/+0
| | | | | | | | | | | | | | | | | | | | | | - 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
* Get rid of gnomehierBaptiste Daroussin2014-12-221-2/+6
| | | | Notes: svn path=/head/; revision=375280
* 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
* - Fix half-assed, broken attempt of r361978 to convert sysutils/cdrdao toMarius Strobl2014-11-091-29/+23
| | | | | | | | OPTIONS and of r358245 to staging. - Add LICENSE. Notes: svn path=/head/; revision=372374
* sysutils/cdrdao: USES+= alias plus no-op fix for DragonFlyJohn Marino2014-10-201-1/+2
| | | | | | | | | The USES=alias fix is covered by a portmgr blanket. While here, duplicate a rules file to eliminate a local makefile in dports. This has no effect on FreeBSD. Notes: svn path=/head/; revision=371253
* - Convert USE_BZIP2 to USESJason E. Hale2014-10-112-4/+1
| | | | | | | | | - Drop @dirrmtry from plist Approved by: portmgr blanket Notes: svn path=/head/; revision=370672
* Rename all patches that contain '::' as a path separator, and useAdam Weinberger2014-07-296-0/+0
| | | | | | | '__' instead. Notes: svn path=/head/; revision=363362
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-151-1/+4
| | | | Notes: svn path=/head/; revision=361978
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-5/+5
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361812
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-041-2/+2
| | | | Notes: svn path=/head/; revision=360673
* support stage for gcdmasterMIHIRA Sanpei Yoshiro2014-06-201-0/+1
| | | | Notes: svn path=/head/; revision=358545
* support stage.MIHIRA Sanpei Yoshiro2014-06-182-31/+32
| | | | Notes: svn path=/head/; revision=358245
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | sysutils) Notes: svn path=/head/; revision=327772
* Eradicate USE_GNOME=pkgconfigBaptiste Daroussin2013-08-301-8/+5
| | | | | | | | | | | While here: - Trim headers - Convert USE_GMAKE to USES=gmake - Convert USE_GNOME=gnomehack to USES=pathfix - Convert USE_PERL5 to USES=perl5 Notes: svn path=/head/; revision=325741
* libogg.so.8: Bump PORTREVISION for ports that depend on libogg,Christian Weisgerber2012-07-191-1/+1
| | | | | | | directly or indirectly (via libvorbis, libtheora). Notes: svn path=/head/; revision=301188
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Update lame to 3.99.3.Alexander Leidinger2012-01-141-1/+1
| | | | | | | Bump portrevision of all ports which depend upon it. Notes: svn path=/head/; revision=289243
* Allow to build on powerpc64.Marius Strobl2011-08-131-1/+1
| | | | | | | Approved by: netchild Notes: svn path=/head/; revision=279599
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Bump PORTREVISION after libao update and handle API incompatibility.Christian Weisgerber2010-06-064-2/+32
| | | | Notes: svn path=/head/; revision=255956
* Build and use the internal pccts in order avoid the conflict betweenMarius Strobl2010-05-021-5/+1
| | | | | | | | | | | | | devel/antlr and devel/pccts. Generally this doesn't fix anything of course, given that there's only one other port which still requires devel/pccts instead of its successor it makes sense to avoid that dependency. Approved by: netchild PR: 145615 Notes: svn path=/head/; revision=253558
* Ressurect MASTER_SITE_SUBDIR which erroneously got nuked in rev. 1.57Marius Strobl2009-10-301-0/+1
| | | | | | | | | but actually is needed for the gcdmaster slave-port. Approved by: netchild Notes: svn path=/head/; revision=243559
* Update to 1.2.3.Marius Strobl2009-10-259-1191/+38
| | | | | | | Approved by: netchild Notes: svn path=/head/; revision=243296
* Hardcode a compiler specification file so CC can also be set to somethingMarius Strobl2009-09-121-4/+2
| | | | | | | | | containing spaces. Approved by: netchild Notes: svn path=/head/; revision=241288
* - Retire MASTER_SITE_SOURCEFORGE_EXTENDED, it's no longer needed - all ↵Dmitry Marakasov2009-09-021-2/+1
| | | | | | | | | | | | mirrors actually have all distfiles - Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey - Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED Approved by: portmgr (pav) Notes: svn path=/head/; revision=240715
* Bump PORTREVISION after libogg and libvorbisfile major version increment.Christian Weisgerber2009-07-061-1/+1
| | | | Notes: svn path=/head/; revision=237283
* 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
* Rename fexecve() to js_fexecve() so it doesn't clash with the recentlyMarius Strobl2008-04-091-0/+3
| | | | | | | | | | added libc one. Reported by: marcus Approved by: netchild Notes: svn path=/head/; revision=210952
* Fix the build with new libsigc++20 2.2.2. I have tested these ports in runtimeJeremy Messenger2008-03-281-0/+2
| | | | | | | | | | and these seem work fine in normal use. I don't test every functions, so let me know if you have any problem with it. Reported by: pointyhat via pav Notes: svn path=/head/; revision=209987
* Presenting GNOME 2.20.1 and all related works for FreeBSD. The officialJoe Marcus Clarke2007-10-241-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GNOME 2.20 release notes can be found at http://www.gnome.org/start/2.20/notes/en/ . Beyond that, this update includes the new GIMP 2.4 (courtesy of ahze). The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME hierarchy. We are now using the more standard DATADIR of ${PREFIX}/share rather than ${PREFIX}/share/gnome. The result is that fewer patches and hacks are needed to port GNOME components to FreeBSD. This will mean some user changes may be required, so be sure to read /usr/ports/UPDATING for more details. This release and the things we accomplished in it would not have been possible without mezz's crazy idea to collapse DATADIR, and his persistence to make it happen successfully. Ahze and pav also deserve thanks for their work on porting modules and testing the whole ball of wax on pointyhat (respectively). The FreeBSD GNOME team would also like to thank our various testers and contributors: Yasuda Keisuke Frank Jahnke Pawel Worach Brian Gruber Franz Klammer Yuri Pankov Nick Barkas Cristian KLEIN Tony Maher Scot Hetzel Martin Matuska (mm) Benoit Dejean Martin Wilke (miwi) (And anyone else I may have missed) PRs fixed in this release: 111272, 113470, 115995, 116338 Notes: svn path=/head/; revision=201947
* Fix build on FreeBSD 8 and beyond, dropping support for FreeBSD 3 andMarius Strobl2007-10-211-3/+33
| | | | | | | | | | earlier. PR: 117361 Approved by: netchild Notes: svn path=/head/; revision=201717