diff options
author | miwi <miwi@FreeBSD.org> | 2006-12-04 07:21:58 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-12-04 07:21:58 +0800 |
commit | e1b3c2a4f0423a58a774fc6b69f0c7eb688365e1 (patch) | |
tree | 546b429da4ccdb64f87cf30445122d272c4745cf /graphics/scale2x | |
parent | 9edb01352c85bd644eadcade6518be7133254bb0 (diff) | |
download | freebsd-ports-gnome-e1b3c2a4f0423a58a774fc6b69f0c7eb688365e1.tar.gz freebsd-ports-gnome-e1b3c2a4f0423a58a774fc6b69f0c7eb688365e1.tar.zst freebsd-ports-gnome-e1b3c2a4f0423a58a774fc6b69f0c7eb688365e1.zip |
Scale2x is real-time graphics effect able to increase the size of small
bitmaps guessing the missing pixels without interpolating pixels and
blurring the images.
WWW: http://scale2x.sourceforge.net/
PR: ports/106196
Submitted by: chinsan
Diffstat (limited to 'graphics/scale2x')
-rw-r--r-- | graphics/scale2x/Makefile | 31 | ||||
-rw-r--r-- | graphics/scale2x/distinfo | 3 | ||||
-rw-r--r-- | graphics/scale2x/pkg-descr | 5 |
3 files changed, 39 insertions, 0 deletions
diff --git a/graphics/scale2x/Makefile b/graphics/scale2x/Makefile new file mode 100644 index 000000000000..4585223a9617 --- /dev/null +++ b/graphics/scale2x/Makefile @@ -0,0 +1,31 @@ +# Ports collection makefile for: scale2x +# Date created: 2006/12/01 +# Whom: chinsan +# +# $FreeBSD$ +# + +PORTNAME= scale2x +PORTVERSION= 2.2 +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= chinsan@FreeBSD.org +COMMENT= Real-time graphics effect able to increase the size of small bitmaps + +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png + +USE_GETOPT_LONG=yes +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" + +PLIST_FILES= bin/scalex bin/scalerx +MAN1= scalex.1 scalerx.1 + +post-patch: + @${REINPLACE_CMD} -e 's,png.h,libpng/png.h,' ${WRKSRC}/file.h + +.include <bsd.port.mk> diff --git a/graphics/scale2x/distinfo b/graphics/scale2x/distinfo new file mode 100644 index 000000000000..6fcdca42eef6 --- /dev/null +++ b/graphics/scale2x/distinfo @@ -0,0 +1,3 @@ +MD5 (scale2x-2.2.tar.gz) = b0a44a2d513d419354b0cf9542e62775 +SHA256 (scale2x-2.2.tar.gz) = 5784683c8d4c41741bb122b82704c08f9e1fd4fe1e0410f04917a27b27b1ed59 +SIZE (scale2x-2.2.tar.gz) = 156834 diff --git a/graphics/scale2x/pkg-descr b/graphics/scale2x/pkg-descr new file mode 100644 index 000000000000..47658b642f98 --- /dev/null +++ b/graphics/scale2x/pkg-descr @@ -0,0 +1,5 @@ +Scale2x is real-time graphics effect able to increase the size of small +bitmaps guessing the missing pixels without interpolating pixels and +blurring the images. + +WWW: http://scale2x.sourceforge.net/ |