80 lines
2.4 KiB
Makefile
80 lines
2.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.47 2010/11/17 08:05:15 espie Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT-main= Python imaging library
|
|
COMMENT-examples= example programs for the Python Imaging Library
|
|
COMMENT-bin= binaries for the Python Imaging Library
|
|
COMMENT-docs= documentation for the Python Imaging Library
|
|
|
|
MODPY_EGG_VERSION= 1.1.7
|
|
DISTNAME= Imaging-${MODPY_EGG_VERSION}
|
|
PKGNAME-main= py-${DISTNAME}
|
|
FULLPKGNAME-examples= py-Imaging-examples-${MODPY_EGG_VERSION}
|
|
EPOCH-examples= 0
|
|
FULLPKGPATH-examples= graphics/py-Imaging,-examples
|
|
PKGNAME-bin= py-Imaging-bin-${MODPY_EGG_VERSION}
|
|
FULLPKGNAME-docs= py-Imaging-docs-${MODPY_EGG_VERSION}
|
|
FULLPKGPATH-docs= graphics/py-Imaging,-docs
|
|
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://www.pythonware.com/products/pil/
|
|
|
|
# PIL Software License
|
|
# Permission to use, copy, modify and distribute freely.
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB-main= freetype z jpeg.>=62 lcms ${MODTK_WANTLIB}
|
|
|
|
MASTER_SITES= http://effbot.org/media/downloads/
|
|
|
|
MODULES= lang/python x11/tk
|
|
|
|
RUN_DEPENDS= ${MODPY_TKINTER_DEPENDS}
|
|
RUN_DEPENDS-bin= ${RUN_DEPENDS} \
|
|
graphics/py-Imaging
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
LIB_DEPENDS-main= graphics/jpeg \
|
|
graphics/lcms \
|
|
${MODTK_LIB_DEPENDS}
|
|
|
|
FLAVORS= python2.4 python2.6
|
|
FLAVOR?= python2.6
|
|
|
|
.if ${FLAVOR:L:Mpython2.4} && !${FLAVOR:L:Npython2.4}
|
|
MULTI_PACKAGES= -main
|
|
.elif ${FLAVOR:L:Mpython2.6} && !${FLAVOR:L:Npython2.6}
|
|
MULTI_PACKAGES= -main -examples -bin -docs
|
|
.else
|
|
ERRORS+= "Fatal: You must select one version: ${FLAVORS}"
|
|
.endif
|
|
|
|
MODPY_VERSION= ${FLAVOR:S/python//}
|
|
MODPY_ADJ_FILES= Scripts/pil*.py
|
|
|
|
INCDIR=${PREFIX}/include/python${MODPY_VERSION}
|
|
post-install:
|
|
${INSTALL_SCRIPT_DIR} ${PREFIX}/share/examples/py-Imaging
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Scripts/*.py \
|
|
${PREFIX}/share/examples/py-Imaging
|
|
${INSTALL_DATA} ${WRKSRC}/Scripts/README \
|
|
${PREFIX}/share/examples/py-Imaging
|
|
for file in ${WRKSRC}/Scripts/pil*.py; do \
|
|
${INSTALL_SCRIPT} $$file ${PREFIX}/bin/`basename $$file .py`; \
|
|
done
|
|
${INSTALL_DATA_DIR} ${INCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/libImaging/ImPlatform.h ${INCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/libImaging/Imaging.h ${INCDIR}
|
|
${INSTALL_SCRIPT_DIR} ${PREFIX}/share/doc/py-Imaging
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Docs/* ${PREFIX}/share/doc/py-Imaging
|
|
|
|
do-regress: fake
|
|
@cd ${WRKSRC} && ${SETENV} PYTHONPATH=${WRKINST}${MODPY_SITEPKG} \
|
|
${REGRESS_ENV} ${MODPY_BIN} ./selftest.py
|
|
|
|
.include <bsd.port.mk>
|