openbsd-ports/graphics/dcraw/Makefile
sthen 038ab963ce update to 9.04 and drop strl* patches which are difficult to maintain,
and this code is already present several other times in the ports tree
unpatched. jasper@ has no objections to dropping strl* patches.
2010-09-21 10:29:09 +00:00

39 lines
911 B
Makefile

# $OpenBSD: Makefile,v 1.12 2010/09/21 10:29:09 sthen Exp $
COMMENT = digital camera RAW format conversion tool
DISTNAME = dcraw-9.04
CATEGORIES = graphics
HOMEPAGE = http://www.cybercom.net/~dcoffin/dcraw/
MASTER_SITES = http://cybercom.net/~dcoffin/dcraw/archive/
# Some code is completely free, some is under the GPL
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WANTLIB = c jpeg lcms m
LIB_DEPENDS = ::graphics/jpeg \
::graphics/lcms
NO_REGRESS = Yes
SEPARATE_BUILD = simple
WRKDIST = ${WRKDIR}/dcraw
do-build:
${CC} ${CFLAGS} -c -o ${WRKBUILD}/dcraw.o -I${PREFIX}/include \
${WRKSRC}/dcraw.c
${CC} ${CFLAGS} -o ${WRKBUILD}/dcraw -ljpeg -lm -llcms -L${PREFIX}/lib \
${WRKBUILD}/dcraw.o
do-install:
${INSTALL_PROGRAM} ${WRKBUILD}/dcraw ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/dcraw.1 ${PREFIX}/man/man1
.include <bsd.port.mk>