mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
This is a library for OpenGL to load PNG graphics files as an
OpenGL texture as easily as possible. It also has a number of options for generating the alpha channel and mipmaps. WWW: http://www.wyatt100.freeserve.co.uk/download.htm PR: ports/94576 Submitted by: Dmitry Marakasov <amdmi3@mail.ru>
This commit is contained in:
parent
86ab39eda5
commit
cec9874c22
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=157626
5 changed files with 56 additions and 0 deletions
|
@ -171,6 +171,7 @@
|
|||
SUBDIR += glide3
|
||||
SUBDIR += glitz
|
||||
SUBDIR += gliv
|
||||
SUBDIR += glpng
|
||||
SUBDIR += gltk
|
||||
SUBDIR += gltt
|
||||
SUBDIR += gmt
|
||||
|
|
43
graphics/glpng/Makefile
Normal file
43
graphics/glpng/Makefile
Normal file
|
@ -0,0 +1,43 @@
|
|||
# New ports collection makefile for: glpng
|
||||
# Date created: 06 Mar 2006
|
||||
# Whom: Dmitry Marakasov <amdmi3@mail.ru>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= glpng
|
||||
PORTVERSION= 1.45
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.wyatt100.freeserve.co.uk/
|
||||
DISTNAME= glpng
|
||||
|
||||
MAINTAINER= amdmi3@mail.ru
|
||||
COMMENT= Library to easily load PNG files as an OpenGL textures
|
||||
|
||||
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
||||
|
||||
USE_GL= yes
|
||||
USE_ZIP= yes
|
||||
USE_X_PREFIX= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
AR?= /usr/bin/ar
|
||||
|
||||
WRKSRC= ${WRKDIR}/src
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|png/|libpng/|' ${WRKSRC}/glpng.c
|
||||
|
||||
do-build:
|
||||
${CC} ${CFLAGS} -fPIC -I${X11BASE}/include -I${LOCALBASE}/include -I${WRKDIR}/include -c -o ${WRKSRC}/libglpng.o ${WRKSRC}/glpng.c
|
||||
${CC} ${CFLAGS} -fPIC -L${X11BASE}/lib -L${LOCALBASE}/lib -shared -lGL -lpng -lz -lm -o ${WRKSRC}/libglpng.so.1 ${WRKSRC}/libglpng.o
|
||||
${AR} cqs ${WRKSRC}/libglpng.a ${WRKSRC}/libglpng.o
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/libglpng.so.1 ${PREFIX}/lib
|
||||
${INSTALL_DATA} ${WRKSRC}/libglpng.a ${PREFIX}/lib
|
||||
${LN} -sf libglpng.so.1 ${PREFIX}/lib/libglpng.so
|
||||
${MKDIR} ${PREFIX}/include/GL/
|
||||
${INSTALL_DATA} ${WRKDIR}/include/GL/glpng.h ${PREFIX}/include/GL/
|
||||
|
||||
.include <bsd.port.mk>
|
3
graphics/glpng/distinfo
Normal file
3
graphics/glpng/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (glpng.zip) = bed59efb699a51e6de7434580df41395
|
||||
SHA256 (glpng.zip) = 5f7c785acb00de6f7bcf53b1c2c94ddc07de3ef1b1f85c5bfc6483e89fa22223
|
||||
SIZE (glpng.zip) = 309337
|
5
graphics/glpng/pkg-descr
Normal file
5
graphics/glpng/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This is a library for OpenGL to load PNG graphics files as an
|
||||
OpenGL texture as easily as possible. It also has a number of
|
||||
options for generating the alpha channel and mipmaps.
|
||||
|
||||
WWW: http://www.wyatt100.freeserve.co.uk/download.htm
|
4
graphics/glpng/pkg-plist
Normal file
4
graphics/glpng/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
|||
include/GL/glpng.h
|
||||
lib/libglpng.a
|
||||
lib/libglpng.so
|
||||
lib/libglpng.so.1
|
Loading…
Add table
Reference in a new issue