pkgsrc/multimedia/xvidcore/Makefile
drochner 7c674bc548 update to 1.2.2
changes:
-Workaround for nasm bug with Mach-O/OSX target
-Fix for missing resync marker range check
-Improved precision for RGB<->YUV conversions
-Fix for potential RGB24 access violation
-Updated compiler options for Apple PPC target
2009-06-02 17:10:53 +00:00

53 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.35 2009/06/02 17:10:53 drochner Exp $
DISTNAME= xvidcore-1.2.2
CATEGORIES= multimedia
MASTER_SITES= http://downloads.xvid.org/downloads/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.xvid.org/
COMMENT= ISO MPEG-4 compliant video codec
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../mk/bsd.prefs.mk"
# the resulting objects from the asm don't link correctly on Solaris.
# nor on amd64 -- they are not PIC, but the ABI demands it
# big patch available from Gentoo, if someone is interested:
# http://bugs.gentoo.org/show_bug.cgi?id=90287
.if ${OPSYS} == "SunOS" || ${MACHINE_ARCH} == "x86_64" || \
!empty(MACHINE_PLATFORM:MDarwin-[9].*-i386)
CONFIGURE_ARGS+= --disable-assembly
.elif ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS+= nasm>=0.98.39nb3:../../devel/nasm
#.elif ${MACHINE_ARCH} == "x86_64"
#BUILD_DEPENDS+= yasm>=0.4.0:../../devel/yasm
.endif
.if !empty(PKGSRC_COMPILER:Msunpro)
CFLAGS+= -D__inline=inline
SUBST_CLASSES+= ld
SUBST_MESSAGE.ld= Fixing linker arguments for Solaris
SUBST_STAGE.ld= pre-configure
SUBST_FILES.ld= configure
SUBST_SED.ld= -e "s|-Wl,-soname,libxvidcore...(SHARED_EXTENSION)...(API_MAJOR)||"
SUBST_SED.ld+= -e "s|-Wl,--version-script=libxvidcore.ld||"
.endif
PKG_INSTALLATION_TYPES= overwrite pkgviews
WRKSRC= ${WRKDIR}/xvidcore/build/generic
GNU_CONFIGURE= YES
MAKE_ENV+= MKDIR=${MKDIR:Q}
.if ${OPSYS} == "Darwin"
post-install:
${RM} -f ${DESTDIR}${PREFIX}/lib/libxvidcore.so.4
${RM} -f ${DESTDIR}${PREFIX}/lib/libxvidcore.so
${LN} -sf ${DESTDIR}${PREFIX}/lib/libxvidcore.4.dylib ${DESTDIR}${PREFIX}/lib/libxvidcore.dylib
.endif
.include "../../mk/bsd.pkg.mk"