50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.25 2002/05/13 23:31:24 espie Exp $
|
|
# $NetBSD: Makefile,v 1.25 1999/03/04 14:18:54 tron Exp $
|
|
|
|
COMMENT= "toolkit for converting images between different formats"
|
|
|
|
DISTNAME= netpbm-9.24
|
|
CATEGORIES= graphics
|
|
NEED_VERSION= 1.500
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=netpbm/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
HOMEPAGE= http://netpbm.sourceforge.net/
|
|
|
|
LIB_DEPENDS= tiff.35::graphics/tiff \
|
|
jpeg.62::graphics/jpeg \
|
|
png.2::graphics/png
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MAKE_FLAGS= CC="${CC}"
|
|
FAKE_FLAGS= ${MAKE_FLAGS} PREFIX="${WRKINST}${TRUEPREFIX}"
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
MAKE_FILE= GNUmakefile
|
|
|
|
pre-build:
|
|
@mv -f ${WRKSRC}/pm_config.h ${WRKSRC}/pm_config.h.new
|
|
@mv -f ${WRKSRC}/pbm/pm.h ${WRKSRC}/pbm/pm.h.new
|
|
@sed -e s#!!X11R6!!#${X11BASE}#g \
|
|
${WRKSRC}/pm_config.h.new > ${WRKSRC}/pm_config.h
|
|
@sed -e s#shhopt.h#pm_shhopt.h#g \
|
|
${WRKSRC}/pbm/pm.h.new > ${WRKSRC}/pbm/pm.h
|
|
@cp -f ${FILESDIR}/Makefile.config.OpenBSD \
|
|
${WRKSRC}/Makefile.config
|
|
@cd ${WRKSRC}/shhopt; ln -sf shhopt.h pm_shhopt.h
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.if defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:L} == "yes"
|
|
MAKE_FLAGS+= NETPBMLIBTYPE=unixstatic
|
|
.else
|
|
MAKE_FLAGS+= NETPBMLIBTYPE=unixshared
|
|
.endif
|