04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
60 lines
1.9 KiB
Makefile
60 lines
1.9 KiB
Makefile
# Created by: piero
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xanim
|
|
PORTVERSION= 2.92.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= multimedia graphics
|
|
MASTER_SITES= ftp://ftp.nstu.ru/pub/mirrors/xanim.va.pubnix.com/:main \
|
|
LOCAL/dinoex:main,DEFAULT \
|
|
ftp://ftp.nstu.ru/pub/mirrors/xanim.va.pubnix.com/dlls/
|
|
DISTNAME= xanim2920
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:main ${EXTRA_FILES}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Play most popular animation formats and show pictures
|
|
|
|
NO_CDROM= Must be redistributed without fee
|
|
|
|
# clang's cpp destroys whitespace, particularly hard tabs in makefiles,
|
|
# which is fatal for imake.
|
|
USES= alias imake
|
|
USE_GCC= any
|
|
USE_XORG= xext xt sm ice xext x11
|
|
MAKE_ARGS+= -j 2 # safe and helps even the single-CPU machines
|
|
DLLDIR= ${PREFIX}/lib/X11/xanim
|
|
PLIST_FILES+= bin/xanim man/man1/xanim.1.gz
|
|
|
|
post-extract:
|
|
${CP} ${WRKSRC}/docs/xanim.man ${WRKSRC}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (${ARCH} == "i386")
|
|
EXTRA_FILES= vid_cvid_2.1_freebsdELFx86.tgz \
|
|
vid_cyuv_1.0_freebsdELFx86.tgz \
|
|
vid_h261_1.0_freebsdELFx86.tgz \
|
|
vid_h263_1.0_freebsdELFx86.tgz \
|
|
vid_iv32_2.1_freebsdELFx86.tgz \
|
|
vid_iv41_1.1_freebsdELFx86.tgz \
|
|
vid_iv50_1.0_freebsdELFx86.tgz
|
|
PLIST_FILES+= lib/X11/xanim/cvid.readme lib/X11/xanim/cyuv.readme \
|
|
lib/X11/xanim/h261.readme lib/X11/xanim/h263.readme \
|
|
lib/X11/xanim/iv32.readme lib/X11/xanim/iv41.readme \
|
|
lib/X11/xanim/iv50.readme \
|
|
lib/X11/xanim/vid_cvid_2.1_freebsdELFx86.xa \
|
|
lib/X11/xanim/vid_cyuv_1.0_freebsdELFx86.xa \
|
|
lib/X11/xanim/vid_h261_1.0_freebsdELFx86.xa \
|
|
lib/X11/xanim/vid_h263_1.0_freebsdELFx86.xa \
|
|
lib/X11/xanim/vid_iv32_2.1_freebsdELFx86.xa \
|
|
lib/X11/xanim/vid_iv41_1.1_freebsdELFx86.xa \
|
|
lib/X11/xanim/vid_iv50_1.0_freebsdELFx86.xa
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DLLDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/*.readme ${STAGEDIR}${DLLDIR}/
|
|
${INSTALL_DATA} ${WRKDIR}/*.xa ${STAGEDIR}${DLLDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|