79356c33d7
the program is to interpolate pixels in JFIF images (commonly referred to as "JPEG images"). This is useful to correct images from a digital camera with CCD defects. For example, if one pixel is always bright green, this pixel can be interpolated away with jpegpixi. From Giovanni Bechis <g.bechis@snb.it>. ok okan@
27 lines
547 B
Makefile
27 lines
547 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/01 20:23:07 kili Exp $
|
|
|
|
COMMENT= jpeg pixel interpolator
|
|
|
|
DISTNAME= jpegpixi-1.1.1
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://www.zero-based.org/software/jpegpixi/
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= Giovanni Bechis <g.bechis@snb.it>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c m
|
|
LIB_DEPENDS= jpeg.>=62::graphics/jpeg
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --disable-nls \
|
|
--with-jpeglib=${LOCALBASE}
|
|
|
|
.include <bsd.port.mk>
|