diff options
author | pav <pav@FreeBSD.org> | 2003-12-11 09:00:37 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2003-12-11 09:00:37 +0800 |
commit | e7021398fcadb98399b38c8954d136b1b6ea0c47 (patch) | |
tree | 66432b6bf42826e0a7498d25c313124788c7e67d /graphics/cinepaint/Makefile | |
parent | a4fd13fcac41fa323fa741f4679dc92e99b49445 (diff) | |
download | freebsd-ports-gnome-e7021398fcadb98399b38c8954d136b1b6ea0c47.tar.gz freebsd-ports-gnome-e7021398fcadb98399b38c8954d136b1b6ea0c47.tar.zst freebsd-ports-gnome-e7021398fcadb98399b38c8954d136b1b6ea0c47.zip |
Add cinepaint, a filmgimp fork, which is a gimp fork.
Cinepaint is specially designed for frame-by-frame painting
and retouching of movie material.
PR: ports/57876
Submitted by: David Yeske <dyeske@yahoo.com>
Diffstat (limited to 'graphics/cinepaint/Makefile')
-rw-r--r-- | graphics/cinepaint/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/graphics/cinepaint/Makefile b/graphics/cinepaint/Makefile new file mode 100644 index 000000000000..24551f89d350 --- /dev/null +++ b/graphics/cinepaint/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: cinepaint +# Date created: 11 Oct 2003 +# Whom: David Yeske <dyeske@yahoo.com> +# +# $FreeBSD$ +# + +PORTNAME= cinepaint +PORTVERSION= 0.18 +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION}-1 + +MAINTAINER= dyeske@yahoo.com +COMMENT= An editing tool used for painting and retouching of movies + +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ + png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff + +USE_X_PREFIX= yes +USE_LIBTOOL= yes +USE_PYTHON= yes +USE_GMAKE= yes +USE_GNOME= gtk12 +INSTALLS_SHLIB= yes +USE_REINPLACE= yes + +MAN1= cinepaint.1 cinepainttool.1 + +PLIST_SUB= VER=${PORTVERSION}-1 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +WITHOUT_OPENEXR= yes +.endif + +.if !defined(WITHOUT_OPENEXR) +LIB_DEPENDS+= IlmImf.0:${PORTSDIR}/graphics/OpenEXR +CONFIGURE_ARGS+= --with-openexr-prefix=${LOCALBASE} +PLIST_SUB+= OPENEXR:="" +.else +PLIST_SUB+= OPENEXR:="@comment " +.endif + +post-patch: + @${REINPLACE_CMD} -e \ + 's| -Wall||' \ + ${WRKSRC}/configure + + @${REINPLACE_CMD} -E -e \ + 's|-LINUX.+$$||' \ + ${WRKSRC}/Makefile.in + +.include <bsd.port.post.mk> |