aboutsummaryrefslogtreecommitdiff
path: root/multimedia/libtheora
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - Switch to USES=localbaseDmitry Marakasov2018-10-252-4/+3
| | | | | | | | | | - Add testing support - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=482962
* Switch some MASTER_SITES from http/ftp to https.Mathieu Arnold2018-02-271-2/+2
| | | | | | | | | | | Also some cleanup of dead entries. PR: 226203 Submitted by: Sam H Sponsored by: Absolight Notes: svn path=/head/; revision=463123
* - Add LICENSESunpoet Po-Chuan Hsieh2016-12-091-1/+5
| | | | | | | | | | | | | | | | | | | | | | - Add missing LIB_DEPENDS and solve a stage-qa error libogg is a required dependency. PORTREVISION was not bumped because libogg is already a package dependency via audio/libvorbis. from README: Requirements summary: For libtheora: libogg 1.1 or newer. ====> Running Q/A tests (stage-qa) Error: /usr/local/lib/libtheora.so.0.3.10 is linked to /usr/local/lib/libogg.so.0 from audio/libogg but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libogg.so:audio/libogg Approved by: portmgr (blanket) Notes: svn path=/head/; revision=428198
* Remove libogg.so.8, libvorbis.so.4 and libvorbisfile.so.6 compatibilityTijl Coosemans2016-12-081-1/+1
| | | | | | | | links that were added in r374303 to prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428129
* Use USES=pathfix where applicable.Mathieu Arnold2016-10-212-10/+1
| | | | | | | | | | | PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093 Notes: svn path=/head/; revision=424427
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Remove trailing whitespace from Makefiles, M-X.Jimmy Olgeni2015-10-081-1/+1
| | | | Notes: svn path=/head/; revision=398833
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-02-011-1/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=378270
* Drop .la files and add INSTALL_TARGET=install-stripTijl Coosemans2014-09-192-15/+12
| | | | Notes: svn path=/head/; revision=368559
* Convert a bunch of USE_BZIP2 to USES=tar:bzip2Adam Weinberger2014-07-291-2/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363371
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* Convert to USES=libtoolBaptiste Daroussin2014-03-022-3/+6
| | | | Notes: svn path=/head/; revision=346828
* Fix configure with clang3.4Baptiste Daroussin2014-02-111-0/+15
| | | | | | | Submitted by: dim Notes: svn path=/head/; revision=343831
* Remove NO_STAGE to ports natively stage ready shown by a FORCE_STAGE exp-runBaptiste Daroussin2013-09-241-2/+1
| | | | | | | Exp-run by: bdrewery Notes: svn path=/head/; revision=328096
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* 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
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+3
| | | | | | | | | | | | - 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
* - remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276986
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Bump PORTREVISION for ports that depend on libogg, directly or indirectlyChristian Weisgerber2010-06-061-1/+1
| | | | | | | (via libvorbis, libtheora). Notes: svn path=/head/; revision=255958
* Don't link to compatMichael Johnson2009-12-291-1/+3
| | | | | | | | PR: ports/142034 Submitted by: amdmi3 Notes: svn path=/head/; revision=246874
* Update to 1.1.1Michael Johnson2009-12-214-83/+23
| | | | | | | | PR: ports/140919 Submitted by: Gea-Suan Lin <gslin@gslin.org> Notes: svn path=/head/; revision=246328
* -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
* Bump PORTREVISION after libogg and libvorbisfile major version increment.Christian Weisgerber2009-07-061-0/+1
| | | | Notes: svn path=/head/; revision=237283
* - Update to 1.0 releasePav Lucistnik2009-03-305-10/+88
| | | | | | | | PR: ports/132084 Submitted by: Marcin Cieslak <saper@SYSTEM.PL> Notes: svn path=/head/; revision=231334
* - Add MAKE_JOBS_SAFE to support SMP compilationMartin Matuska2009-03-241-0/+1
| | | | Notes: svn path=/head/; revision=230877
* Update to 1.0beta2Michael Johnson2008-02-293-6/+4
| | | | | | | | PR: ports/121125 Submitted by: Marcin Cieslak <saper@system.pl> Notes: svn path=/head/; revision=208183
* - Update to 1.0alpha8Michael Johnson2007-10-094-27/+24
| | | | | | | - Use USE_GNOME=ltverhack so we won't have unnecessary lib version bumps Notes: svn path=/head/; revision=201193
* Adopt for multimedia@Michael Johnson2007-10-091-1/+1
| | | | Notes: svn path=/head/; revision=201190
* - Chase increase of audio/libvorbis shlib version.Martin Wilke2007-07-281-1/+2
| | | | | | | - Bump PORTREVISION Notes: svn path=/head/; revision=196462
* There is no need to replace pthread in examples/Makefile.inKevin Lo2007-07-181-2/+0
| | | | Notes: svn path=/head/; revision=195835
* Reset rainer.alves@gmail.com by request due to current lack of time toMark Linimon2007-06-291-1/+1
| | | | | | | work on FreeBSD. Notes: svn path=/head/; revision=194480
* Those who would give up essential linkability to purchase a little plat-Michael Nottebrock2006-12-191-3/+8
| | | | | | | | | | form specific optimization, ... (Disable asm code, thus make compilable with gcc 2.95 on 4.x so C++ programs on 4.x can link to the shared library). Notes: svn path=/head/; revision=180185
* - Fix SDL-dependent ports broken by last update.Stanislav Sedov2006-09-211-5/+0
| | | | | | | Approved by: kris (portmgr), sem (mentor) Notes: svn path=/head/; revision=173507
* - Update to 1.0a7Martin Wilke2006-09-133-14/+14
| | | | | | | | | PR: ports/102435 Submitted by: Raaf <raaf(at)luna.afraid.org> Approved by: maintainer timeout Notes: svn path=/head/; revision=172911
* Add USE_GCC=3.4+ to make it compile on 4.x.Stefan Walter2006-06-291-0/+1
| | | | | | | | | | PR: 99600 Submitted by: Sven Berkvens-Matthijsse <sven@ilse.net> Approved by: maintainer arved (mentor) Notes: svn path=/head/; revision=166626
* Update to 1.0alpha6.Stefan Walter2006-06-273-14/+18
| | | | | | | | | PR: 99131 Submitted by: Rainer Alves <rainer.alves@gmail.com> (maintainer) Approved by: arved (mentor) Notes: svn path=/head/; revision=166424
* - Update to 1.0alpha5Marcus Alves Grando2006-05-074-16/+12
| | | | | | | | | | - Take maintainership PR: 95863 Submitted by: maintainer Notes: svn path=/head/; revision=161538
* Reset kwm due to no response about email.Mark Linimon2006-04-141-1/+1
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=159522
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+2
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154193
* 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
* Change CATAGORIES after repocopy.Koop Mast2005-01-131-1/+1
| | | | | | | | | Add another pointyhat to my still fresh collection. Noticed by: pav Notes: svn path=/head/; revision=126360
* Finish repocopy from graphics to multimedia.Koop Mast2005-01-134-26/+24
| | | | | | | | | | | Update to alpha4, based on [1] PR: 75961 [1] Submitted by: Stefan Walter sw AT gegenunendlich dot de Repocopyed by: marcus Notes: svn path=/head/; revision=126327
* Change the not yet changed maintainer fields to my FreeBSD.org account.Koop Mast2004-11-231-1/+1
| | | | | | | Approved by: pav (mentor) Notes: svn path=/head/; revision=122210
* Update to 1.0alpha-3.Joe Marcus Clarke2004-03-253-13/+12
| | | | | | | | PR: 64702 Submitted by: maintainer Notes: svn path=/head/; revision=105242
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963