rgbPaint is a very basic GTK+2.6 (or later) based program designed for editing pixel based images. It is a fork of mtPaint 3.09. It can only edit and save RGB images to PNG, JPEG, or ICO files. It can read PNG, JPEG, TIFF, GIF, ICO, files and possibly others like TGA, PCX, and SVGi if they are installed with your version of GTK+2. WWW: http://mtpaint.sourceforge.net/ Author: Dmitry Groshev <wjaguar@users.sourceforge.net>
28 lines
633 B
Makefile
28 lines
633 B
Makefile
# New ports collection makefile for: rgbpaint
|
|
# Date created: 4 April 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rgbpaint
|
|
PORTVERSION= 0.8.5
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/mtpaint
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Very basic painting program
|
|
|
|
USE_GETTEXT= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gtk20
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MAN1PREFIX}/man/man1 \
|
|
--locale=${PREFIX}/share/locale cflags slow intl man
|
|
MAN1= ${PORTNAME}.1
|
|
MANCOMPRESSED= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/if \[/s|==|=|g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|