ports/130435: Update port: graphics/devil to 1.7.5
KATO Tsuguru
tkato432 at yahoo.com
Mon Jan 12 18:20:04 UTC 2009
>Number: 130435
>Category: ports
>Synopsis: Update port: graphics/devil to 1.7.5
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: change-request
>Submitter-Id: current-users
>Arrival-Date: Mon Jan 12 18:20:03 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator: KATO Tsuguru
>Release: FreeBSD 7.1-RELEASE-p1 i386
>Organization:
>Environment:
>Description:
- Update to version 1.7.5
Remove file:
files/patch-include-IL_il.h
files/patch-include-IL_ilu.h
files/patch-src-IL-src-Makefile.in
files/patch-src-IL-src-il_png.c
>How-To-Repeat:
>Fix:
diff -urN /usr/ports/graphics/devil/Makefile graphics/devil/Makefile
--- /usr/ports/graphics/devil/Makefile 2008-08-28 18:48:01.000000000 +0900
+++ graphics/devil/Makefile 2009-01-08 22:55:45.000000000 +0900
@@ -6,42 +6,108 @@
#
PORTNAME= devil
-PORTVERSION= 1.6.7
-PORTREVISION= 6
+PORTVERSION= 1.7.5
PORTEPOCH= 1
CATEGORIES= graphics
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= openil
+MASTER_SITES= SF/openil
DISTNAME= DevIL-${PORTVERSION}
MAINTAINER= ports at FreeBSD.org
COMMENT= A full featured cross-platform image library
-LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
- jpeg.9:${PORTSDIR}/graphics/jpeg \
- tiff.4:${PORTSDIR}/graphics/tiff \
- mng.1:${PORTSDIR}/graphics/libmng \
- lcms.1:${PORTSDIR}/graphics/lcms
-
-USE_AUTOTOOLS= libtool:15
-USE_GL= yes
+OPTIONS= JPEG "Enable JPEG support" on \
+ JASPER "Enable JPEG2000 support" on \
+ LCMS "Enable LCMS support" on \
+ MNG "Enable MNG support" on \
+ PNG "Enable PNG support" on \
+ TIFF "Enable TIFF support" on \
+ X11 "Enable X11 support" on \
+ SDL "Enable SDL support" off
+
+WRKSRC= ${WRKDIR}/${DISTNAME:L}
+
+USE_AUTOTOOLS= aclocal:110 autoheader:262 automake:110 autoconf:262 libtool:15
+ACLOCAL_ARGS= -I m4 -I ${LOCALBASE}/share/aclocal
+AUTOMAKE_ARGS= --add-missing --copy --force-missing
+CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+CONFIGURE_ARGS= --enable-ILU \
+ --disable-allegro --disable-directx8 --disable-directx9 \
+ --disable-altivec --disable-sse --disable-sse2 --disable-sse3
USE_LDCONFIG= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --disable-allegro
-CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib"
-OPTIONS= SDL "Enable SDL support" off
+CFLAGS+= -DIL_NO_VTF
+CPPFLAGS= -I${LOCALBASE}/include
+LDFLAGS= -L${LOCALBASE}/lib
.include <bsd.port.pre.mk>
+.if defined(WITHOUT_JPEG)
+CONFIGURE_ARGS+=--disable-jpeg
+.else
+LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg
+CONFIGURE_ARGS+=--enable-jpeg
+.endif
+
+.if defined(WITHOUT_JASPER)
+CONFIGURE_ARGS+=--disable-jp2
+.else
+LIB_DEPENDS+= jasper.4:${PORTSDIR}/graphics/jasper
+CONFIGURE_ARGS+=--enable-jp2
+.endif
+
+.if defined(WITHOUT_LCMS)
+CONFIGURE_ARGS+=--disable-lcms
+.else
+LIB_DEPENDS+= lcms.1:${PORTSDIR}/graphics/lcms
+CONFIGURE_ARGS+=--enable-lcms
+.endif
+
+.if defined(WITHOUT_MNG)
+CONFIGURE_ARGS+=--disable-mng
+.else
+LIB_DEPENDS+= mng.1:${PORTSDIR}/graphics/libmng
+CONFIGURE_ARGS+=--enable-mng
+.endif
+
+.if defined(WITHOUT_PNG)
+CONFIGURE_ENV+= libpng_app=no
+CONFIGURE_ARGS+=--disable-png
+.else
+LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png
+.endif
+
+.if defined(WITHOUT_TIFF)
+CONFIGURE_ARGS+=--disable-tiff
+.else
+LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
+CONFIGURE_ARGS+=--enable-tiff
+.endif
+
+.if defined(WITHOUT_X11)
+CONFIGURE_ARGS+=--disable-opengl --disable-x11 --disable-xpm --disable-shm
+PLIST_SUB+= X11="@comment "
+.else
+USE_GL= glut
+CONFIGURE_ARGS+=--enable-ILUT
+PLIST_SUB+= X11=""
+.endif
+
.if defined(WITH_SDL)
-USE_SDL= yes
+USE_SDL= sdl
.else
CONFIGURE_ARGS+=--disable-sdl
.endif
post-patch:
- ${FIND} ${WRKSRC} \( -name '*.c' -o -name '*.cpp' -o -name '*.h' \) -print0 |\
- ${XARGS} -0 ${REINPLACE_CMD} 's|ILvoid|void|g'
+ @${REINPLACE_CMD} -e 's|-O3||g' ${WRKSRC}/configure.ac
+ @${REINPLACE_CMD} -e '/^SUBDIRS/s|docs||g' ${WRKSRC}/Makefile.am
+
+post-install:
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${DOCSDIR}
+.for file in AUTHORS CREDITS ChangeLog Libraries.txt README TODO
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+.endfor
+.endif
.include <bsd.port.post.mk>
diff -urN /usr/ports/graphics/devil/distinfo graphics/devil/distinfo
--- /usr/ports/graphics/devil/distinfo 2008-08-28 18:48:01.000000000 +0900
+++ graphics/devil/distinfo 2009-01-07 00:15:26.000000000 +0900
@@ -1,3 +1,3 @@
-MD5 (DevIL-1.6.7.tar.gz) = 0d0c3842196d85c4e24bedabcd84f626
-SHA256 (DevIL-1.6.7.tar.gz) = 61cc4d203d9c4272d10b7ba19b45ef53882bb545936389092361302d94b5f907
-SIZE (DevIL-1.6.7.tar.gz) = 3013312
+MD5 (DevIL-1.7.5.tar.gz) = 2a74578507a21d75d7fcc5afd41444d0
+SHA256 (DevIL-1.7.5.tar.gz) = c27bce29bf1113fd5914b669c2eb72aa083ac4e925b5b62246e508f1f8ba942d
+SIZE (DevIL-1.7.5.tar.gz) = 1199330
diff -urN /usr/ports/graphics/devil/files/patch-include-IL_il.h graphics/devil/files/patch-include-IL_il.h
--- /usr/ports/graphics/devil/files/patch-include-IL_il.h 2008-08-28 15:57:22.000000000 +0900
+++ graphics/devil/files/patch-include-IL_il.h 1970-01-01 09:00:00.000000000 +0900
@@ -1,175 +0,0 @@
---- include/IL/il.h.orig Mon Jul 12 18:55:08 2004
-+++ include/IL/il.h Mon Sep 17 19:36:05 2007
-@@ -125,7 +125,6 @@
- typedef float ILclampf;
- typedef double ILdouble;
- typedef double ILclampd;
--typedef void ILvoid;
-
- #ifdef _UNICODE
- #ifndef _WIN32_WCE
-@@ -460,7 +459,7 @@
-
- // Callback functions for file reading
- typedef void* ILHANDLE;
--typedef ILvoid (ILAPIENTRY *fCloseRProc)(ILHANDLE);
-+typedef void (ILAPIENTRY *fCloseRProc)(ILHANDLE);
- typedef ILboolean (ILAPIENTRY *fEofProc) (ILHANDLE);
- typedef ILint (ILAPIENTRY *fGetcProc) (ILHANDLE);
- typedef ILHANDLE (ILAPIENTRY *fOpenRProc) (const ILstring);
-@@ -469,7 +468,7 @@
- typedef ILint (ILAPIENTRY *fTellRProc) (ILHANDLE);
-
- // Callback functions for file writing
--typedef ILvoid (ILAPIENTRY *fCloseWProc)(ILHANDLE);
-+typedef void (ILAPIENTRY *fCloseWProc)(ILHANDLE);
- typedef ILHANDLE (ILAPIENTRY *fOpenWProc) (const ILstring);
- typedef ILint (ILAPIENTRY *fPutcProc) (ILubyte, ILHANDLE);
- typedef ILint (ILAPIENTRY *fSeekWProc) (ILHANDLE, ILint, ILint);
-@@ -477,8 +476,8 @@
- typedef ILint (ILAPIENTRY *fWriteProc) (const void*, ILuint, ILuint, ILHANDLE);
-
- // Callback functions for allocation and deallocation
--typedef ILvoid* (ILAPIENTRY *mAlloc)(ILuint);
--typedef ILvoid (ILAPIENTRY *mFree) (ILvoid*);
-+typedef void* (ILAPIENTRY *mAlloc)(ILuint);
-+typedef void (ILAPIENTRY *mFree) (void*);
-
- // Registered format procedures
- typedef ILenum (ILAPIENTRY *IL_LOADPROC)(const ILstring);
-@@ -491,91 +490,91 @@
- ILAPI ILboolean ILAPIENTRY ilActiveMipmap(ILuint Number);
- ILAPI ILboolean ILAPIENTRY ilApplyPal(const ILstring FileName);
- ILAPI ILboolean ILAPIENTRY ilApplyProfile(const ILstring InProfile, const ILstring OutProfile);
--ILAPI ILvoid ILAPIENTRY ilBindImage(ILuint Image);
-+ILAPI void ILAPIENTRY ilBindImage(ILuint Image);
- ILAPI ILboolean ILAPIENTRY ilBlit(ILuint Source, ILint DestX, ILint DestY, ILint DestZ, ILuint SrcX, ILuint SrcY, ILuint SrcZ, ILuint Width, ILuint Height, ILuint Depth);
--ILAPI ILvoid ILAPIENTRY ilClearColour(ILclampf Red, ILclampf Green, ILclampf Blue, ILclampf Alpha);
--ILAPI ILboolean ILAPIENTRY ilClearImage(ILvoid);
--ILAPI ILuint ILAPIENTRY ilCloneCurImage(ILvoid);
-+ILAPI void ILAPIENTRY ilClearColour(ILclampf Red, ILclampf Green, ILclampf Blue, ILclampf Alpha);
-+ILAPI ILboolean ILAPIENTRY ilClearImage(void);
-+ILAPI ILuint ILAPIENTRY ilCloneCurImage(void);
- ILAPI ILboolean ILAPIENTRY ilCompressFunc(ILenum Mode);
- ILAPI ILboolean ILAPIENTRY ilConvertImage(ILenum DestFormat, ILenum DestType);
- ILAPI ILboolean ILAPIENTRY ilConvertPal(ILenum DestFormat);
- ILAPI ILboolean ILAPIENTRY ilCopyImage(ILuint Src);
--ILAPI ILuint ILAPIENTRY ilCopyPixels(ILuint XOff, ILuint YOff, ILuint ZOff, ILuint Width, ILuint Height, ILuint Depth, ILenum Format, ILenum Type, ILvoid *Data);
-+ILAPI ILuint ILAPIENTRY ilCopyPixels(ILuint XOff, ILuint YOff, ILuint ZOff, ILuint Width, ILuint Height, ILuint Depth, ILenum Format, ILenum Type, void *Data);
- ILAPI ILuint ILAPIENTRY ilCreateSubImage(ILenum Type, ILuint Num);
--ILAPI ILboolean ILAPIENTRY ilDefaultImage(ILvoid);
--ILAPI ILvoid ILAPIENTRY ilDeleteImages(ILsizei Num, const ILuint *Images);
-+ILAPI ILboolean ILAPIENTRY ilDefaultImage(void);
-+ILAPI void ILAPIENTRY ilDeleteImages(ILsizei Num, const ILuint *Images);
- ILAPI ILboolean ILAPIENTRY ilDisable(ILenum Mode);
- ILAPI ILboolean ILAPIENTRY ilEnable(ILenum Mode);
- ILAPI ILboolean ILAPIENTRY ilFormatFunc(ILenum Mode);
--ILAPI ILvoid ILAPIENTRY ilGenImages(ILsizei Num, ILuint *Images);
-+ILAPI void ILAPIENTRY ilGenImages(ILsizei Num, ILuint *Images);
- ILAPI ILubyte* ILAPIENTRY ilGetAlpha(ILenum Type);
--ILAPI ILvoid ILAPIENTRY ilModAlpha( ILdouble AlphaValue );
--ILAPI ILvoid ILAPIENTRY ilSetAlpha( ILdouble AlphaValue );
-+ILAPI void ILAPIENTRY ilModAlpha( ILdouble AlphaValue );
-+ILAPI void ILAPIENTRY ilSetAlpha( ILdouble AlphaValue );
- ILAPI ILboolean ILAPIENTRY ilGetBoolean(ILenum Mode);
--ILAPI ILvoid ILAPIENTRY ilGetBooleanv(ILenum Mode, ILboolean *Param);
--ILAPI ILubyte* ILAPIENTRY ilGetData(ILvoid);
--ILAPI ILuint ILAPIENTRY ilGetDXTCData(ILvoid *Buffer, ILuint BufferSize, ILenum DXTCFormat);
--ILAPI ILenum ILAPIENTRY ilGetError(ILvoid);
-+ILAPI void ILAPIENTRY ilGetBooleanv(ILenum Mode, ILboolean *Param);
-+ILAPI ILubyte* ILAPIENTRY ilGetData(void);
-+ILAPI ILuint ILAPIENTRY ilGetDXTCData(void *Buffer, ILuint BufferSize, ILenum DXTCFormat);
-+ILAPI ILenum ILAPIENTRY ilGetError(void);
- ILAPI ILint ILAPIENTRY ilGetInteger(ILenum Mode);
--ILAPI ILvoid ILAPIENTRY ilGetIntegerv(ILenum Mode, ILint *Param);
--ILAPI ILuint ILAPIENTRY ilGetLumpPos(ILvoid);
--ILAPI ILubyte* ILAPIENTRY ilGetPalette(ILvoid);
-+ILAPI void ILAPIENTRY ilGetIntegerv(ILenum Mode, ILint *Param);
-+ILAPI ILuint ILAPIENTRY ilGetLumpPos(void);
-+ILAPI ILubyte* ILAPIENTRY ilGetPalette(void);
- ILAPI const ILstring ILAPIENTRY ilGetString(ILenum StringName);
--ILAPI ILvoid ILAPIENTRY ilHint(ILenum Target, ILenum Mode);
--ILAPI ILvoid ILAPIENTRY ilInit(ILvoid);
-+ILAPI void ILAPIENTRY ilHint(ILenum Target, ILenum Mode);
-+ILAPI void ILAPIENTRY ilInit(void);
- ILAPI ILboolean ILAPIENTRY ilIsDisabled(ILenum Mode);
- ILAPI ILboolean ILAPIENTRY ilIsEnabled(ILenum Mode);
- ILAPI ILboolean ILAPIENTRY ilIsImage(ILuint Image);
- ILAPI ILboolean ILAPIENTRY ilIsValid(ILenum Type, const ILstring FileName);
- ILAPI ILboolean ILAPIENTRY ilIsValidF(ILenum Type, ILHANDLE File);
--ILAPI ILboolean ILAPIENTRY ilIsValidL(ILenum Type, ILvoid *Lump, ILuint Size);
--ILAPI ILvoid ILAPIENTRY ilKeyColour(ILclampf Red, ILclampf Green, ILclampf Blue, ILclampf Alpha);
-+ILAPI ILboolean ILAPIENTRY ilIsValidL(ILenum Type, void *Lump, ILuint Size);
-+ILAPI void ILAPIENTRY ilKeyColour(ILclampf Red, ILclampf Green, ILclampf Blue, ILclampf Alpha);
- ILAPI ILboolean ILAPIENTRY ilLoad(ILenum Type, const ILstring FileName);
- ILAPI ILboolean ILAPIENTRY ilLoadF(ILenum Type, ILHANDLE File);
- ILAPI ILboolean ILAPIENTRY ilLoadImage(const ILstring FileName);
--ILAPI ILboolean ILAPIENTRY ilLoadL(ILenum Type, ILvoid *Lump, ILuint Size);
-+ILAPI ILboolean ILAPIENTRY ilLoadL(ILenum Type, void *Lump, ILuint Size);
- ILAPI ILboolean ILAPIENTRY ilLoadPal(const ILstring FileName);
- ILAPI ILboolean ILAPIENTRY ilOriginFunc(ILenum Mode);
- ILAPI ILboolean ILAPIENTRY ilOverlayImage(ILuint Source, ILint XCoord, ILint YCoord, ILint ZCoord);
--ILAPI ILvoid ILAPIENTRY ilPopAttrib(ILvoid);
--ILAPI ILvoid ILAPIENTRY ilPushAttrib(ILuint Bits);
--ILAPI ILvoid ILAPIENTRY ilRegisterFormat(ILenum Format);
-+ILAPI void ILAPIENTRY ilPopAttrib(void);
-+ILAPI void ILAPIENTRY ilPushAttrib(ILuint Bits);
-+ILAPI void ILAPIENTRY ilRegisterFormat(ILenum Format);
- ILAPI ILboolean ILAPIENTRY ilRegisterLoad(const ILstring Ext, IL_LOADPROC Load);
- ILAPI ILboolean ILAPIENTRY ilRegisterMipNum(ILuint Num);
- ILAPI ILboolean ILAPIENTRY ilRegisterNumImages(ILuint Num);
--ILAPI ILvoid ILAPIENTRY ilRegisterOrigin(ILenum Origin);
--ILAPI ILvoid ILAPIENTRY ilRegisterPal(ILvoid *Pal, ILuint Size, ILenum Type);
-+ILAPI void ILAPIENTRY ilRegisterOrigin(ILenum Origin);
-+ILAPI void ILAPIENTRY ilRegisterPal(void *Pal, ILuint Size, ILenum Type);
- ILAPI ILboolean ILAPIENTRY ilRegisterSave(const ILstring Ext, IL_SAVEPROC Save);
--ILAPI ILvoid ILAPIENTRY ilRegisterType(ILenum Type);
-+ILAPI void ILAPIENTRY ilRegisterType(ILenum Type);
- ILAPI ILboolean ILAPIENTRY ilRemoveLoad(const ILstring Ext);
- ILAPI ILboolean ILAPIENTRY ilRemoveSave(const ILstring Ext);
--ILAPI ILvoid ILAPIENTRY ilResetMemory(ILvoid);
--ILAPI ILvoid ILAPIENTRY ilResetRead(ILvoid);
--ILAPI ILvoid ILAPIENTRY ilResetWrite(ILvoid);
-+ILAPI void ILAPIENTRY ilResetMemory(void);
-+ILAPI void ILAPIENTRY ilResetRead(void);
-+ILAPI void ILAPIENTRY ilResetWrite(void);
- ILAPI ILboolean ILAPIENTRY ilSave(ILenum Type, const ILstring FileName);
- ILAPI ILuint ILAPIENTRY ilSaveF(ILenum Type, ILHANDLE File);
- ILAPI ILboolean ILAPIENTRY ilSaveImage(const ILstring FileName);
--ILAPI ILuint ILAPIENTRY ilSaveL(ILenum Type, ILvoid *Lump, ILuint Size);
-+ILAPI ILuint ILAPIENTRY ilSaveL(ILenum Type, void *Lump, ILuint Size);
- ILAPI ILboolean ILAPIENTRY ilSavePal(const ILstring FileName);
--ILAPI ILboolean ILAPIENTRY ilSetData(ILvoid *Data);
-+ILAPI ILboolean ILAPIENTRY ilSetData(void *Data);
- ILAPI ILboolean ILAPIENTRY ilSetDuration(ILuint Duration);
--ILAPI ILvoid ILAPIENTRY ilSetInteger(ILenum Mode, ILint Param);
--ILAPI ILvoid ILAPIENTRY ilSetMemory(mAlloc, mFree);
--ILAPI ILvoid ILAPIENTRY ilSetPixels(ILint XOff, ILint YOff, ILint ZOff, ILuint Width, ILuint Height, ILuint Depth, ILenum Format, ILenum Type, ILvoid *Data);
--ILAPI ILvoid ILAPIENTRY ilSetRead(fOpenRProc, fCloseRProc, fEofProc, fGetcProc, fReadProc, fSeekRProc, fTellRProc);
--ILAPI ILvoid ILAPIENTRY ilSetString(ILenum Mode, const char *String);
--ILAPI ILvoid ILAPIENTRY ilSetWrite(fOpenWProc, fCloseWProc, fPutcProc, fSeekWProc, fTellWProc, fWriteProc);
--ILAPI ILvoid ILAPIENTRY ilShutDown(ILvoid);
--ILAPI ILboolean ILAPIENTRY ilTexImage(ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp, ILenum Format, ILenum Type, ILvoid *Data);
-+ILAPI void ILAPIENTRY ilSetInteger(ILenum Mode, ILint Param);
-+ILAPI void ILAPIENTRY ilSetMemory(mAlloc, mFree);
-+ILAPI void ILAPIENTRY ilSetPixels(ILint XOff, ILint YOff, ILint ZOff, ILuint Width, ILuint Height, ILuint Depth, ILenum Format, ILenum Type, void *Data);
-+ILAPI void ILAPIENTRY ilSetRead(fOpenRProc, fCloseRProc, fEofProc, fGetcProc, fReadProc, fSeekRProc, fTellRProc);
-+ILAPI void ILAPIENTRY ilSetString(ILenum Mode, const char *String);
-+ILAPI void ILAPIENTRY ilSetWrite(fOpenWProc, fCloseWProc, fPutcProc, fSeekWProc, fTellWProc, fWriteProc);
-+ILAPI void ILAPIENTRY ilShutDown(void);
-+ILAPI ILboolean ILAPIENTRY ilTexImage(ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp, ILenum Format, ILenum Type, void *Data);
- ILAPI ILboolean ILAPIENTRY ilTypeFunc(ILenum Mode);
-
- ILAPI ILboolean ILAPIENTRY ilLoadData(const ILstring FileName, ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp);
- ILAPI ILboolean ILAPIENTRY ilLoadDataF(ILHANDLE File, ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp);
--ILAPI ILboolean ILAPIENTRY ilLoadDataL(ILvoid *Lump, ILuint Size, ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp);
-+ILAPI ILboolean ILAPIENTRY ilLoadDataL(void *Lump, ILuint Size, ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp);
- ILAPI ILboolean ILAPIENTRY ilSaveData(const ILstring FileName);
-
--ILAPI ILboolean ILAPIENTRY ilLoadFromJpegStruct(ILvoid* JpegDecompressorPtr);
--ILAPI ILboolean ILAPIENTRY ilSaveFromJpegStruct(ILvoid* JpegCompressorPtr);
-+ILAPI ILboolean ILAPIENTRY ilLoadFromJpegStruct(void* JpegDecompressorPtr);
-+ILAPI ILboolean ILAPIENTRY ilSaveFromJpegStruct(void* JpegCompressorPtr);
-
- // For all those weirdos that spell "colour" without the 'u'.
- #define ilClearColor ilClearColour
diff -urN /usr/ports/graphics/devil/files/patch-include-IL_ilu.h graphics/devil/files/patch-include-IL_ilu.h
--- /usr/ports/graphics/devil/files/patch-include-IL_ilu.h 2008-08-28 15:57:22.000000000 +0900
+++ graphics/devil/files/patch-include-IL_ilu.h 1970-01-01 09:00:00.000000000 +0900
@@ -1,72 +0,0 @@
---- include/IL/ilu.h.orig 2007-09-17 17:42:11.000000000 +0200
-+++ include/IL/ilu.h 2007-09-17 17:43:47.000000000 +0200
-@@ -132,40 +132,40 @@
-
-
- // ImageLib Utility Functions
--ILAPI ILboolean ILAPIENTRY iluAlienify(ILvoid);
-+ILAPI ILboolean ILAPIENTRY iluAlienify(void);
- ILAPI ILboolean ILAPIENTRY iluBlurAvg(ILuint Iter);
- ILAPI ILboolean ILAPIENTRY iluBlurGaussian(ILuint Iter);
--ILAPI ILboolean ILAPIENTRY iluBuildMipmaps(ILvoid);
--ILAPI ILuint ILAPIENTRY iluColoursUsed(ILvoid);
-+ILAPI ILboolean ILAPIENTRY iluBuildMipmaps(void);
-+ILAPI ILuint ILAPIENTRY iluColoursUsed(void);
- ILAPI ILboolean ILAPIENTRY iluCompareImage(ILuint Comp);
- ILAPI ILboolean ILAPIENTRY iluContrast(ILfloat Contrast);
- ILAPI ILboolean ILAPIENTRY iluCrop(ILuint XOff, ILuint YOff, ILuint ZOff, ILuint Width, ILuint Height, ILuint Depth);
--ILAPI ILvoid ILAPIENTRY iluDeleteImage(ILuint Id);
--ILAPI ILboolean ILAPIENTRY iluEdgeDetectE(ILvoid);
--ILAPI ILboolean ILAPIENTRY iluEdgeDetectP(ILvoid);
--ILAPI ILboolean ILAPIENTRY iluEdgeDetectS(ILvoid);
--ILAPI ILboolean ILAPIENTRY iluEmboss(ILvoid);
-+ILAPI void ILAPIENTRY iluDeleteImage(ILuint Id);
-+ILAPI ILboolean ILAPIENTRY iluEdgeDetectE(void);
-+ILAPI ILboolean ILAPIENTRY iluEdgeDetectP(void);
-+ILAPI ILboolean ILAPIENTRY iluEdgeDetectS(void);
-+ILAPI ILboolean ILAPIENTRY iluEmboss(void);
- ILAPI ILboolean ILAPIENTRY iluEnlargeCanvas(ILuint Width, ILuint Height, ILuint Depth);
- ILAPI ILboolean ILAPIENTRY iluEnlargeImage(ILfloat XDim, ILfloat YDim, ILfloat ZDim);
--ILAPI ILboolean ILAPIENTRY iluEqualize(ILvoid);
-+ILAPI ILboolean ILAPIENTRY iluEqualize(void);
- ILAPI const ILstring ILAPIENTRY iluErrorString(ILenum Error);
--ILAPI ILboolean ILAPIENTRY iluFlipImage(ILvoid);
-+ILAPI ILboolean ILAPIENTRY iluFlipImage(void);
- ILAPI ILboolean ILAPIENTRY iluGammaCorrect(ILfloat Gamma);
--ILAPI ILuint ILAPIENTRY iluGenImage(ILvoid);
--ILAPI ILvoid ILAPIENTRY iluGetImageInfo(ILinfo *Info);
-+ILAPI ILuint ILAPIENTRY iluGenImage(void);
-+ILAPI void ILAPIENTRY iluGetImageInfo(ILinfo *Info);
- ILAPI ILint ILAPIENTRY iluGetInteger(ILenum Mode);
--ILAPI ILvoid ILAPIENTRY iluGetIntegerv(ILenum Mode, ILint *Param);
-+ILAPI void ILAPIENTRY iluGetIntegerv(ILenum Mode, ILint *Param);
- ILAPI const ILstring ILAPIENTRY iluGetString(ILenum StringName);
--ILAPI ILvoid ILAPIENTRY iluImageParameter(ILenum PName, ILenum Param);
--ILAPI ILvoid ILAPIENTRY iluInit(ILvoid);
--ILAPI ILboolean ILAPIENTRY iluInvertAlpha(ILvoid);
-+ILAPI void ILAPIENTRY iluImageParameter(ILenum PName, ILenum Param);
-+ILAPI void ILAPIENTRY iluInit(void);
-+ILAPI ILboolean ILAPIENTRY iluInvertAlpha(void);
- ILAPI ILuint ILAPIENTRY iluLoadImage(const ILstring FileName);
--ILAPI ILboolean ILAPIENTRY iluMirror(ILvoid);
--ILAPI ILboolean ILAPIENTRY iluNegative(ILvoid);
-+ILAPI ILboolean ILAPIENTRY iluMirror(void);
-+ILAPI ILboolean ILAPIENTRY iluNegative(void);
- ILAPI ILboolean ILAPIENTRY iluNoisify(ILclampf Tolerance);
- ILAPI ILboolean ILAPIENTRY iluPixelize(ILuint PixSize);
--ILAPI ILvoid ILAPIENTRY iluRegionfv(ILpointf *Points, ILuint n);
--ILAPI ILvoid ILAPIENTRY iluRegioniv(ILpointi *Points, ILuint n);
-+ILAPI void ILAPIENTRY iluRegionfv(ILpointf *Points, ILuint n);
-+ILAPI void ILAPIENTRY iluRegioniv(ILpointi *Points, ILuint n);
- ILAPI ILboolean ILAPIENTRY iluReplaceColour(ILubyte Red, ILubyte Green, ILubyte Blue, ILfloat Tolerance);
- ILAPI ILboolean ILAPIENTRY iluRotate(ILfloat Angle);
- ILAPI ILboolean ILAPIENTRY iluRotate3D(ILfloat x, ILfloat y, ILfloat z, ILfloat Angle);
-@@ -174,7 +174,7 @@
- ILAPI ILboolean ILAPIENTRY iluScale(ILuint Width, ILuint Height, ILuint Depth);
- ILAPI ILboolean ILAPIENTRY iluScaleColours(ILfloat r, ILfloat g, ILfloat b);
- ILAPI ILboolean ILAPIENTRY iluSharpen(ILfloat Factor, ILuint Iter);
--ILAPI ILboolean ILAPIENTRY iluSwapColours(ILvoid);
-+ILAPI ILboolean ILAPIENTRY iluSwapColours(void);
- ILAPI ILboolean ILAPIENTRY iluWave(ILfloat Angle);
-
- #define iluColorsUsed iluColoursUsed
diff -urN /usr/ports/graphics/devil/files/patch-src-IL-src-Makefile.in graphics/devil/files/patch-src-IL-src-Makefile.in
--- /usr/ports/graphics/devil/files/patch-src-IL-src-Makefile.in 2008-08-28 15:57:22.000000000 +0900
+++ graphics/devil/files/patch-src-IL-src-Makefile.in 1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- src-IL/src/Makefile.in.orig Tue Jan 10 16:09:29 2006
-+++ src-IL/src/Makefile.in Tue Jan 10 16:09:45 2006
-@@ -312,7 +312,7 @@
-
- AM_CFLAGS = @LIBIL_CFLAGS@
- libIL_la_LDFLAGS = -no-undefined @VERSIONINFO@
--libIL_la_LIBADD = @LIBPNG@ @LIBJPG@ @LIBTIFF@ @LIBGIF@ @LIBMNG@ @LIBLCMS@
-+libIL_la_LIBADD = @LIBPNG@ @LIBJPG@ @LIBTIFF@ @LIBMNG@ @LIBLCMS@
- INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src-IL/include
- all: all-am
-
diff -urN /usr/ports/graphics/devil/files/patch-src-IL-src-il_png.c graphics/devil/files/patch-src-IL-src-il_png.c
--- /usr/ports/graphics/devil/files/patch-src-IL-src-il_png.c 2008-08-28 15:57:22.000000000 +0900
+++ graphics/devil/files/patch-src-IL-src-il_png.c 1970-01-01 09:00:00.000000000 +0900
@@ -1,18 +0,0 @@
---- src-IL/src/il_png.c.orig Thu Jun 24 11:38:54 2004
-+++ src-IL/src/il_png.c Wed Oct 5 22:44:17 2005
-@@ -282,11 +282,11 @@
-
- ILboolean readpng_get_image(ILdouble display_exponent)
- {
-- ILuint i;
- png_bytepp row_pointers = NULL;
-- ILuint width, height, channels;
-- ILdouble screen_gamma = 1.0, image_gamma;
-- ILuint bit_depth;
-+ png_uint_32 width, height;
-+ ILuint i, channels, bit_depth;
-+ ILdouble screen_gamma = 1.0, image_gamma;
-+
-
-
- /* setjmp() must be called in every function that calls a PNG-reading
diff -urN /usr/ports/graphics/devil/pkg-plist graphics/devil/pkg-plist
--- /usr/ports/graphics/devil/pkg-plist 2008-08-28 18:48:01.000000000 +0900
+++ graphics/devil/pkg-plist 2009-01-08 22:14:48.000000000 +0900
@@ -1,3 +1,8 @@
+include/IL/devil_cpp_wrapper.hpp
+include/IL/il.h
+include/IL/ilu.h
+include/IL/ilu_region.h
+%%X11%%include/IL/ilut.h
lib/libIL.a
lib/libIL.la
lib/libIL.so
@@ -6,15 +11,15 @@
lib/libILU.la
lib/libILU.so
lib/libILU.so.1
-lib/libILUT.a
-lib/libILUT.la
-lib/libILUT.so
-lib/libILUT.so.1
-include/IL/il.h
-include/IL/ilu.h
-include/IL/ilut.h
-include/IL/il_wrap.h
-include/IL/config.h
-include/IL/devil_internal_exports.h
-include/IL/ilu_region.h
+%%X11%%lib/libILUT.a
+%%X11%%lib/libILUT.la
+%%X11%%lib/libILUT.so
+%%X11%%lib/libILUT.so.1
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/CREDITS
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/Libraries.txt
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
@dirrm include/IL
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list