diff options
author | cube <cube> | 2003-10-11 14:59:58 +0000 |
---|---|---|
committer | cube <cube> | 2003-10-11 14:59:58 +0000 |
commit | a3445bea597027cfd512dfecb4d5c2f640c4c513 (patch) | |
tree | 2d732f2a705b31b387e590b97585b5c0a9c852e9 /graphics/mpgtx/Makefile | |
parent | c47131b7a89a8824696fc597680607ab40e03efc (diff) | |
download | pkgsrc-a3445bea597027cfd512dfecb4d5c2f640c4c513.tar.gz |
Update to mpgtx-1.3. OK'd by wiz@. Closes PR pkg/19082.
30 August 2002 (Version 1.3):
[pb] -Added support and fixes for mpeg2 muxed files. mpgtx should now split and join mpeg2 files correct
[pb] - Improved mpgtx knowledge about length of mpeg2 movies
[pb] - removed bug which was introduced in 1.2 where demuxing was broken
18 August 2002 (Version 1.2):
[pb] - mpgtx is now able to search for a valid pack through a whole file (-X)
[pb] - added option to suppress progress output (faster) (-N)
[pb] - fixed a bug where a buffer is at end and data could not be processed -> unplayable movies
[pb] - increased file buffer for better performace to 2MB
[pb] - added option to change the aspect ratio of a movie (-A )
[pb] - added option to keep junk headers in splits (-P)
27 August 2001:
[la] - mpgtx now supports MPEG streams with leading zeros and skip them gracefully
[la] - added some support for ill-formed system streams that don't begin with a PACK
header.
(both, thank to Søren Roug)
22 August 2001:
[la] - Created a home made configure script that automagically checks
Large File support and GCC 3.0 tricks to produce correct CFLAGS
and LFLAGS.
20 August 2001:
[la] - Restored compatibility for systems older than glibc2.2+
to enable large file support build with `make lfs-support'
10 August 2001: (large file support)
[ms] - support for files larger than 2GB on systems supporting Single UNIX
Specification 2.0. Requires glibc2.1+ for build but actual support
requires both glibc2.2+ and Linux kernel 2.4+
[la] - Cosmetic changes
(The Entire Large File Support code is the courtesy of Mattias Sandgren
Please stand up and applause )
6 August 2001
[la] - tagmp3 used to return 1 even on success. changed that so that it could be
used in scripts.
(A big thank to C. R. Johnson for that.)
Diffstat (limited to 'graphics/mpgtx/Makefile')
-rw-r--r-- | graphics/mpgtx/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/graphics/mpgtx/Makefile b/graphics/mpgtx/Makefile index 2224dfac5f4..74fbf2c73fc 100644 --- a/graphics/mpgtx/Makefile +++ b/graphics/mpgtx/Makefile @@ -1,9 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2003/07/17 21:41:50 grant Exp $ +# $NetBSD: Makefile,v 1.6 2003/10/11 14:59:58 cube Exp $ # -DISTNAME= mpgtx-1.0-1-src -PKGNAME= mpgtx-1.0 -WRKSRC= ${WRKDIR}/mpgtx-1.0 +DISTNAME= mpgtx-1.3 CATEGORIES= audio graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mpgtx/} EXTRACT_SUFX= .tgz @@ -12,4 +10,9 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://mpgtx.sourceforge.net/ COMMENT= Split and join MPEG files in various ways +HAS_CONFIGURE= yes + +CONFIGURE_ARGS+= --prefix=${PREFIX} \ + --manprefix=${PREFIX} + .include "../../mk/bsd.pkg.mk" |