summaryrefslogtreecommitdiff
path: root/multimedia/mjpegtools/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2015-04-25Recursive revbump following MesaLib update, categories g through n.tnn1-2/+2
2013-02-16Recursive bump for png-1.6.wiz1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-12-31Add PLIST.Linuxsbd1-1/+2
Bump PKGREVISION
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2012-07-07Changes 2.0.0:adam1-15/+13
* a lot of small patches and fixes
2011-03-06Remove comments to avoid grep mismatches.wiz1-7/+1
2011-02-10Really fix png support. From John Bowler.wiz1-2/+2
Bump PKGREVISION.
2011-02-07Bump PKGREVISION for interlaced png fix.wiz1-2/+2
2011-01-24Set LICENSE.wiz1-1/+2
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-2/+2
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+2
2009-01-08Fix pkglint warning.wiz1-2/+2
2009-01-08Update to 1.9.0:wiz1-3/+2
mpeg2enc works "better". some changes for the libquicktime. maintainance for newer release of other packages the mjpegtools need.
2008-07-14Mark as destdir ready.joerg1-1/+3
2007-02-05Dislabe running an SDL test program under Mac OS X. The test programtron1-2/+8
fails for some weird reason and the "configure" script assumes SDL isn't installed which results in an incomplete package.
2007-02-01modular X11 : .include "../../x11/libXxf86dga/buildlink3.mk"abs1-2/+2
2006-12-03Do not try to link to unexistent libs like laudio and laa, I don't knowxtraeme1-1/+3
where they came from, but they are not needed and were causing me build problems.
2006-10-13Fix non-portable shell scripts, bump package revision.tron1-2/+2
2006-07-07LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... justjlam1-2/+2
set OVERRIDE_DIRDEPTH to find any libtool scripts deeper in the WRKSRC tree unless they're named something other than "libtool". SHLIBTOOL_OVERRIDE generally doesn't need to be specified either -- just define it to the empty list and shlibtool-override will look for libtool scripts.
2006-06-12Bump PKGREVISION and BUILDLINK_ABI_DEPENDS (where applicable)wiz1-2/+2
for SDL shlib changes.
2006-05-14Uses C++.seb1-1/+3
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-03-31List the info pages directly in the PLIST and ensure that we honorjlam1-3/+4
PKGINFODIR.
2006-03-09Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.jlam1-2/+2
Remove deprecated ossaudio.buildlink3.mk.
2006-03-08All scripts use #!/bin/sh now.ghen1-8/+1
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-30* Add missing files now that mplex has been re-added.xtraeme1-3/+3
* Add a patch that should fix the build on amd64. * Fixed pkglint warnings. Bump PKGREVISION.
2006-01-29Include mplex in the mjpegtools package, and bump PKGREVISION.ben1-1/+3
Remove mplex as a standalone package, to reduce maintenance.
2006-01-25Add the "mjpegtools-simd" option, to enable MMX/3DNOW supportxtraeme1-2/+1
(disabled by default for compatibility with binary packages), pointed out by ghen.
2006-01-25Update mjpegtools/mplex to 1.8.0.xtraeme1-5/+6
Some changes: * Modularised input handling for MPEG compression tools. * movtar read/write support * MJPEG playback in software, and experimental MJPEG hardware overlay playback (see mjpeg/) * mpeg2enc _much_ improved!
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-12-14Use USE_TOOLS+=bash:run rather than depending on shells/bash and derivingghen1-6/+3
the path from it. Suggested by jlam, ok'ed by xtraeme.
2005-12-13Use EVAL_PREFIX instead of assuming bash lives in ${PREFIX}.ghen1-2/+5
Suggested by jmmv, ok by jmmv & wiz. Ride on previous PKGREVISION.
2005-12-13Patch some shell scripts to start with #!${PREFIX}/bin/bash instead of ↵ghen1-2/+10
#!/bin/bash (at least two of these scripts don't run with /bin/sh). This solves part of PR pkg/29342 (the other part concerns geography/gpsdrive).
2005-12-11Convert aalib to options framework, adding an 'x11' option, and removewiz1-2/+2
aalib-x11 and aview-x11. SDL dependencies change, so bump PKGREVISION (and BUILDLINK_RECOMMENDED) for affected packages. Addresses PR 32046 by Leonard Schmidt.
2005-06-15Work around gcc 4 (on MacOS X 10.4.something) not knowing -fmove-all-movableshubertf1-2/+2
Bump to rev. mjpegtools-1.6.2nb5
2005-06-07Add option for enabling CMOV support, defaulting to off.wiz1-2/+4
This changes the default for this package, so bump PKGREVISION. From Geert Hendrickx in PR 30366.
2005-06-07Remove (commented out) references to avifile, which was removedwiz1-4/+1
from pkgsrc quite some time ago.
2005-06-06This needs X11. From Joerg Sonnenberger.jmmv1-1/+2
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-27PKGREVISION bump for glut dependency removal (SDL/buildlink3.mk).wiz1-2/+2
2005-02-03Use INFO_FILES for registering the mjpeg-howto.info documentation files.reed1-1/+3
And remove from PLIST. This fixes problem when INFO_DIR is using a custom directory such as share/info. Do not bump PKGREVISION, because couldn't package in first place when this problem occurred. This will cause a warning: install-info: warning: no info dir entry in `/usr/pkg/share/info/mjpeg-howto.info' TODO: so add a START-INFO-DIR-ENTRY/END-INFO-DIR-ENTRY pair dir entry.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-04-17Build libmjpegutil as a shared library, which in turn allows transcode tosekiya1-1/+2
use the mjpegutil modules. This commit incorporates changes suggested by wiz@. Bump package revision, as well.