Index: head/graphics/sdl_image/Makefile =================================================================== --- head/graphics/sdl_image/Makefile (revision 499583) +++ head/graphics/sdl_image/Makefile (revision 499584) @@ -1,40 +1,40 @@ # Created by: Maxim Sobolev # $FreeBSD$ PORTNAME= sdl_image PORTVERSION= 1.2.12 PORTREVISION= 12 CATEGORIES= graphics -MASTER_SITES= http://www.libsdl.org/projects/SDL_image/release/ +MASTER_SITES= https://www.libsdl.org/projects/SDL_image/release/ DISTNAME= SDL_image-${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Simple library to load images of various formats as SDL surfaces LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake libtool localbase pkgconfig pathfix sdl USE_SDL= sdl GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-jpg-shared --disable-png-shared \ --disable-tif-shared --disable-webp-shared INSTALL_TARGET= install-strip USE_LDCONFIG= yes OPTIONS_DEFINE= JPEG PNG TIFF WEBP OPTIONS_DEFAULT=JPEG PNG TIFF WEBP JPEG_USES= jpeg JPEG_CONFIGURE_ENABLE= jpg PNG_LIB_DEPENDS= libpng.so:graphics/png PNG_CONFIGURE_ENABLE= png TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff TIFF_CONFIGURE_ENABLE= tif WEBP_LIB_DEPENDS= libwebp.so:graphics/webp WEBP_CONFIGURE_ENABLE= webp post-install: ${INSTALL_PROGRAM} ${WRKSRC}/.libs/showimage ${STAGEDIR}${PREFIX}/bin .include Index: head/graphics/sdl_image/pkg-descr =================================================================== --- head/graphics/sdl_image/pkg-descr (revision 499583) +++ head/graphics/sdl_image/pkg-descr (revision 499584) @@ -1,18 +1,18 @@ This is a simple library to load images of various formats as SDL surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, TGA, and TIFF formats. API: #include "SDL_image.h" SDL_Surface *IMG_Load(const char *file); or SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc); or SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc, char *type); where type is a string specifying the format (i.e. "PNG" or "pcx"). Note that IMG_Load_RW cannot load TGA images. An example program 'showimage' is included, with source in showimage.c -WWW: http://www.libsdl.org/projects/SDL_image/ +WWW: https://www.libsdl.org/projects/SDL_image/