aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/mjpegtools
Commit message (Collapse)AuthorAgeFilesLines
* Convert to USES=jpegantoine2015-06-231-2/+1
|
* - Drop @dirrm* from and add empty directories to pkg-plistsamdmi32015-02-021-4/+0
| | | | Approved by: portmgr blanket
* Allow building with libc++ r224926antoine2015-01-101-0/+33
| | | | | PR: ports/196629 Submitted by: dim@
* Bump portrevision after png updatebapt2014-12-261-1/+1
|
* Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgradeantoine2014-12-261-1/+1
|
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla intijl2014-12-091-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)
* Update the default version of GCC in the Ports Collection from GCC 4.7.4gerald2014-09-111-1/+1
| | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
* Remove patches added together with USES=libtool that are no longer neededtijl2014-07-242-26/+0
| | | | after r362656.
* Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always worktijl2014-07-231-11/+0
| | | | | | | | | | | | | | | | | | | | when an older version of a package is installed. This is the case when an executable links with installed libraries and with uninstalled libraries that link with other uninstalled libraries. For each of the directly linked libraries the executable will have an rpath (/usr/local/lib for the installed libraries and a path under WRKDIR for each of the uninstalled libraries), but not for the indirect libraries. Both ld(1) and rtld(1) search the rpath of the executable first before any rpath of libraries, so the indirectly linked libraries will be found in /usr/local/lib if they are installed instead of in WRKDIR. With this commit executables will overlink with uninstalled indirect libraries again so their location is added to the rpath of the executable. This partially reverts r358784. PR: 191611 Approved by: portmgr (bapt)
* Fix two problems.kwm2014-07-224-1/+33
| | | | | | | | Use class instead of struct for RateCtl in encoderparams.hh. Class RateCtl is defined in ratectl.hh and used elsewhere in the code too. Fix headerguard typo in ontheflyratectlpass[12].hh. Found by: Clang
* Add missing libs when the QUICKTIME and DV options are enabled.tijl2014-06-232-0/+26
| | | | Reported by: Ajtim <lumiwa@gmail.com>
* Add 4 new sed commands to USES=libtool. The first two apply some of thetijl2014-06-222-18/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine)
* - Update graphics/sdl_gfx to version 2.0.25mva2014-06-011-1/+1
| | | | - Bump PORTREVISION on ports depending on it, since the shlib version changed
* Convert graphics/sdl_gfx to USES=libtool. Also set USE_AUTOTOOLS becausetijl2014-05-022-20/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | upstream forgot to regenerate the build scripts. This makes the build use the correct version information and causes a library version bump. Use this opportunity to use USES=libtool instead of USES=libtool:oldver. Bump PORTREVISION on all dependent ports and convert them to USES=libtool where needed. Also use USES=(gmake, pathfix, tar) and new LIB_DEPENDS syntax here and there. games/freedink-engine: - Option helpers. - Staging. - Use dirrmtry for locale directories. games/oolite: - Staging. - Replace ECHO with ECHO_CMD. - Don't use GNUSTEP_PREFIX to install files because it expands to LOCALBASE rather than PREFIX. games/openssn: - Remove USES=desktop-file-utils. No MimeType field in desktop file. - Staging. - Install files in standard DATADIR. games/xblast: - Use proper options. - Staging. - Patch configure so normal make install can be used instead of do-install. - Replace TAR | TAR with COPYTREE_SHARE.
* - Update to 2.1.0miwi2014-02-278-108/+157
| | | | | PR: 185934 Submitted by: ports fury
* Support stagebapt2013-12-142-18/+38
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | multimedia)
* - Remove MAKE_JOBS_SAFE variableak2013-08-151-1/+0
| | | | Approved by: portmgr (bdrewery)
* Convert some multimedia@ ports to:bapt2013-04-231-1/+1
| | | | USES=pkgconfig and USES=pathfix
* Use build-only dependency on pkgconfbapt2012-10-071-6/+2
| | | | Trim headers
* - Fix build with GTK2 optionsylvio2012-06-183-35/+39
| | | | | | | | | | | | | | - Fix build with non-default compiler on i386 - Add MAKE_JOBS_SAFE New file: files/patch-y4mdenoise__MotionSercher.hh Remove file: files/patch-utils-Makefile.in PR: ports/169005 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* - bin/png2yuv does not depend on gtk2 optionpav2012-06-141-1/+1
| | | | Reported by: pointyhat
* - Mark BROKEN when GTK2 option is enabled, because glav binary is not builtpav2012-06-121-1/+3
| | | | | | - Flip GTK2 option to default:off to enable package build with default options Reported by: pointyhat
* Fix SDL check inside the GTK2 block. The port was marked IGNORE regardless ofkwm2012-06-021-1/+1
| | | | the setting of SDL.
* - fix build with png 1.5.10dinoex2012-06-011-1/+1
|
* - update png to 1.5.10dinoex2012-06-011-1/+1
|
* convert to new options frameworkbapt2012-05-311-24/+21
|
* - Fix plist issue with QUICKTIME=trueswills2012-03-032-0/+4
| | | | | PR: ports/161871 Submitted by: "Edward.Sanford.Sutton, III" <mirror176@cox.net>
* - Update devel/sdl12 to 1.2.15mva2012-02-181-1/+1
| | | | | | | | | | | | | - Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav
* Mark as broken on powerpc-9: gcc segfault.linimon2011-11-111-0/+3
| | | | | Hat: portmgr Feature safe: yes
* - explicitly disable sdl when WITHOUT_SDL is usedeadler2011-10-252-1/+2
| | | | | | | - fix plist when WITHOUT_GTK2 is requested Approved by: multimedia (kwm) Approved by: sahil (mentor)
* -resolve ICE on i386eadler2011-10-031-0/+4
| | | | | | | PR: ports/157885 Submitted by: Jimmie James <jimmiejaz@gmail.com> Approved by: multimedia (kwm) Approved by: sahil (mentor)
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-241-4/+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
* - Update graphics/sdl_gfx to version 2.0.22mva2011-07-031-0/+1
| | | | | - Update Mk/bsd.sdl.mk for the new shared lib version - Bump portrevisions for all ports depending on graphics/sdl_gfx
* - update mjpegtools to 2.0.0bapt2011-06-065-56/+18
| | | | - chase library bump
* Sync to new bsd.autotools.mkade2010-12-041-1/+1
|
* - Fix segmentation fault with jpegmiwi2010-05-092-1/+25
| | | | | PR: 146308 Submitted by: Ports Fury
* - update to 1.4.1dinoex2010-03-281-1/+2
| | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi
* - Update to 1.9.0miwi2010-02-134-106/+82
| | | | | PR: 143816 Submitted by: Ports Fury
* - update to jpeg-8dinoex2010-02-051-2/+2
|
* - Switch SourceForge ports to the new File Release System: categories ↵amdmi32009-08-221-1/+1
| | | | starting with M
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.mezz2009-08-031-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
* - update to jpeg7dinoex2009-07-181-2/+2
| | | | Tested by: pav on pointyhat
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-4/+3
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* - Remove USE_GETOPT_LONG which is a no-op since March 2007pav2008-03-201-1/+0
|
* - Chase devel/sdl12 shlib version bumpmiwi2008-03-131-0/+1
|
* Update to 1.9.0rc3ahze2008-02-053-4/+5
| | | | | PR: ports/120265 Submitted by: Yuri
* Update to 1.9.0rc2ahze2007-06-263-4/+5
|
* [patch] multimedia/mjpegtools - update to 1.9rc1edwin2007-06-216-69/+48
| | | | | | | | | | | | | | | | The current mjpegtools (mpeg2enc for example) is dumping core way too often to be able to do useful media conversions. This version has been running on my system for two weeks now and it works much better. portrevision bump for multimedia/lives multimedia/mjpegtools-yuvfilters multimedia/y4mscaler since they have LIB_DEPENDS on this port. Other ports having RUN_DEPENDS on this port are not bumped. PR: ports/113878 Submitted by: Edwin Groothuis <edwin@mavetju.org> Approved by: Michael Johnson <ahze@ahze.net>
* - Welcome X.org 7.2 \o/.flz2007-05-201-1/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* Fix the build with GCC 4.1.mezz2007-01-311-0/+11
| | | | Reported by: krismail
* Install missing headerahze2006-12-232-3/+5
|
* - Fix build after SDL updatemich2006-09-201-4/+0
| | | | Submitted by: stas
* - Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directorystas2006-09-201-1/+1
| | | | | | | | | | | | | | | | structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
* - Remove file/patch-configure, already included in the tarball. Also, removemezz2006-07-014-245/+124
| | | | | | | | | | | | | | | | | | | a few of out of date stuff in post-patch. - Correct the USE_GETOPT_LONG, no need a check of FreeBSD version. - Near all of knobs were not work, and option flags and dependenies were out of date. * Remove WITH_LIBMOVTAR, WITH_LIBDV_PAL, WITHOUT_AVIFILE and WITH_JPEGMMX. * Rename WITH_LIBDV -> WITH_DV (follow /usr/ports/KNOBS). * Now depend on GTK2, not GTK1, with an autocheck and a new WITH_GTK2 knob. * Add new knobs: WITHOUT_PNG, WITHOUT_X11 and WITH_GTK2 * Make sure to not disable SDL if you want GTK2 otherwise it will not working. * All of knobs now work correct again with the update of option flags. - Fix the plist when you use knobs. - Bump the PORTREVISION.
* Portlint:mezz2006-06-121-1/+1
| | | | -Use -[0-9]* in CONFLICT.
* - Transfer MAINTAINER to multimedia@ahze2006-06-101-1/+1
| | | | | Approved by: dhw (postmaster, for using multimedia@ as maintainer) gnome (gstreamer ports)
* Remove unnecessary bash dependency.tmclaugh2006-04-241-4/+0
| | | | Approved by: ahze
* Conversion to a single libtool environment.ade2006-02-232-1/+7
| | | | Approved by: portmgr (kris)
* - Fix build with new libquicktimeahze2006-02-122-1/+19
| | | | | Submitted by: ankon via irc.freenode.org/#FreeBSD-GNOME Obtained from: mjpeg cvs
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-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.
* - Add SHA256ahze2005-11-091-0/+1
| | | | - Add SIZE to a few ports
* - Update to 1.8.0ahze2005-09-283-16/+15
|
* - Add missing file to plistahze2005-07-211-0/+1
| | | | Reported by: kris mail
* - Fix png12 supportahze2005-07-203-0/+156
| | | | | | | - Fix mplex on 4.x PR: 83689 Submitted by: Sven Berkvens-Matthijsse <sven@berkvens.net>
* - Fix typo in plistahze2005-07-181-1/+1
| | | | | PR: 83596 Submitted by: q@galgenberg.net
* - Update to 1.6.3-rc1ahze2005-07-146-75/+33
|
* - libdata/pkgconfig is now included in mtreepav2005-05-171-1/+0
| | | | Approved by: marcus (portmgr hat)
* - Remove unneeded glib12 dependencyahze2005-04-101-1/+0
|
* - Add a new knob, WITHOUT_AVIFILE, to disable multimedia/avifile support toahze2005-04-031-1/+12
| | | | | hopefully fix build on !i386 !amd64. Avifile support is only enabled for i386 and amd64
* - Add CONFLICTS= mplex-*ahze2005-03-111-0/+1
| | | | | PR: ports/76709 Submitted by: Ulrich Spoerlein <q@uni.de>
* Pass over maintainership to ahze: there goes my baby but to a welllioux2005-03-101-1/+1
| | | | caring step father; he has submitted the last 3 major fixes
* - Fix build on amd64 [1]pav2005-02-262-5/+12
| | | | | | | | - Switch to bash 3 PR: ports/73746 [1] Submitted by: Arjan van Leeuwen <avleeuwen@piwebs.com> Approved by: maintainer timeout (4 months)
* BROKEN on amd64: Does not compile on amd64 (needs -fPIC)krion2005-01-311-0/+4
|
* Add WITH_JPEGMMX knob for multimedia/jpeg-mmx supportlioux2004-12-151-2/+14
| | | | | PR: 72559 Submitted by: ahze
* Clean up Makefile a bit: remove left bits about openquicktime,lioux2004-12-151-20/+1
| | | | | | | mjpegtools uses libquicktime now PR: 71751 Submitted by: ahze
* - Fix build with gcc 3.4pav2004-08-205-14/+58
| | | | | | | | | | | - Fix plist - Respect CC and CFLAGS - Fix WITH_QUICKTIME knob PR: ports/69452, ports/69595 Submitted by: Michael Johnson <ahze@ahze.net>, Christian Hiris <4711@chello.at> Approved by: maintainer timeout (1 month)
* o Add WITH_LIBDV_PAL knob which triggers WITH_LIBDV accordingly [1]lioux2004-06-261-5/+14
| | | | | | | | | | o BUILD_DEPENDS on devel/nasm only on ${ARCH} == i386 [1] o RUN_DEPENDS on shells/bash2 since scripts are using it. Must take time to rewrite them for sh compliancy o Bump PORTREVISION due to dependency changes [1] PR: 64145 [1] Submitted by: michael jonson <ahze@ahze.net> [1]
* Update to 1.6.2lioux2004-06-267-160/+82
| | | | | PR: 64721 Submitted by: Koop Mast <kwm@rainbow-runner.nl>
* Remove .la files that are no longer installedkris2004-06-091-3/+0
|
* Chase library bump of libSDL-1.1 for all ports which were dependingedwin2004-03-161-1/+1
| | | | on sdl12-1.2.5
* Whoa there, boy, that's a mighty big commit y'all have there...ade2004-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.
* Chase libdv shared library version bumplioux2004-03-141-2/+2
|
* Properly use SDL everywhere:edwin2004-03-081-2/+3
| | | | | | | | | | | | USE_SDL=yes -> USE_SDL=sdl (good examles everywhere) WANT_SDL/HAVE_SDL instead of exists(localbase/lib/lib...) See http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-sdl.html for more information on how to use USE_SDL, WANT_SDL and HAVE_SDL. PR: follow-ups of ports/55494, ports/61877 Submitted by: Edwin Groothuis <edwin@mavetju.org>
* Make ports/multimedia use the USE_SDL macroedwin2004-03-081-5/+1
| | | | | | PR: ports/61805 Submitted by: Edwin Groothuis <edwin@mavetju.org> Approved by: maintainer timeout
* - Unbreak on -CURRENT [1]pav2004-03-063-7/+75
| | | | | | | | | | - Add patch to add assert header [1] - Add patch to make assembly routine gcc3 friendly (obtained from Gentoo) [1] - Patch path to bash in two scripts - Remove USE_SIZE=yes it's default now and Portlint PR: ports/63745 Submitted by: michael johnson <ahze@ahze.net>
* BROKEN on 5.x: does not compilekris2004-02-181-0/+4
|
* USE_SIZEifylioux2004-02-082-0/+2
|
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-0/+1
| | | | (Part 1)
* Fix for libtool new world orderade2003-06-291-1/+1
| | | | Reported by: Dorian Büttner <Dorian.Buettner@gmx.de>
* Unmark BROKEN by fixing PLIST. According to bento logs, the errorlioux2003-05-112-3/+4
| | | | | | | is actually a PLIST packaging error, not a build error. Prompted by: bento Submitted by: adamw
* BROKEN: Does not compilekris2003-05-071-0/+2
|
* Fix build when WITH_QUICKTIME is enabledlioux2003-04-281-0/+3
| | | | | PR: 51473 Submitted by: Ulrich Spoerlein <q@uni.de>
* Remove USE_GNOMENG.marcus2003-04-211-1/+0
|
* Improve libgnugetopt handling: use OSVERSION variable to handlelioux2003-04-191-5/+2
| | | | -CURRENT which has getopt_long in libc
* Switch to new USE_GETOPT_LONG ports optionlioux2003-04-181-1/+4
|
* De-pkg-commentlioux2003-02-242-1/+1
|
* Update to 1.6.1lioux2003-01-173-6/+9
|
* Chase libdv library version bump in version 0.9.9lioux2003-01-171-2/+2
|
* devel/sdl12 has been upgraded to shlib version 5.edwin2003-01-071-1/+1
|
* Update version number of SDL shared library.sobomax2003-01-021-1/+1
|
* Fix breakage if libgnugetopt is installed prior to building thislioux2002-12-221-0/+16
| | | | | | | | port. Only depend on libgnugetopt in such scenario: less dependencies and decreases chance of problems with -CURRENT vs libgnugetopt. Submitted by: Michael Nottebrock <michaelnottebrock@gmx.net> et al Approved by: portmgr (self & no objections)
* After repo copy from graphics category, update all appropriatelioux2002-11-281-5/+5
| | | | | | | references from graphics to multimedia category Repo copied by: joe (cvs hat) Approved by: knu (portmgr hat)
* Chase libdv -ldv.2 library bump. Forgotten in LIB_DEPENDS line.lioux2002-09-261-1/+1
| | | | | PR: 43378 Submitted by: adam@vectors.cx
* libtool patch to improve chances that this port builds in somelioux2002-09-201-0/+10
| | | | installations
* Chase library version bump in libdv version 0.9.8lioux2002-09-051-1/+1
|
* Fix buildlioux2002-09-041-1/+7
| | | | | PR: 42383 Prompted by: Frank Mayhar <frank@exit.com>
* o Fix build in -STABLE (USE_LIBTOOL fix)lioux2002-07-182-10/+12
| | | | | | | o Use opportunity to fine tune post-patch target PR: 40652 Prompted by: jbw <j.bw@verizon.net>
* Complete USE_GLIB-->USE_GNOMENG+USE_GNOME transition.sobomax2002-07-161-5/+5
|
* Convert USE_GLIB into USE_GNOMENG+USE_GNOME.sobomax2002-07-161-1/+2
|
* USE_REINPLACElioux2002-07-041-6/+7
|
* Chase lib version from avifile version 0.7.7.20020523lioux2002-06-261-1/+1
|
* o Add AVI support which incidently means both DiVX ;-) and DiVX4lioux2002-06-082-2/+12
| | | | | support in i386 platforms o Bump PORTREVISION
* o New port mjpegtools version 1.6.0: Set of tools to record/playback/editlioux2002-06-016-0/+278
videos in MPEG format o Patch written by Adrian De Groot <adridg@aramis.cs.kun.nl>