Import of gimp-dds to pkgsrc-wip.
GIMP plugin that allows you to load and save images in the Direct Draw Surface (DDS) format. Features: Load/save DDS files, optionally using DirectX texture compression (DXT) Optional automatic mipmap generation when saving Load mipmaps into separate layers Load cube map faces and volume map slices into separate layers Save cube maps and volume maps with automatic mipmap generation support Save image with a custom pixel format Non-power-of-two image loading and saving support with automatic mipmap generation support Compliant with DirectX 10 block compressed (BC) formats
This commit is contained in:
parent
cdabd596a4
commit
015385b089
5 changed files with 49 additions and 0 deletions
13
gimp-dds/DESCR
Normal file
13
gimp-dds/DESCR
Normal file
|
@ -0,0 +1,13 @@
|
|||
GIMP plugin that allows you to load and save images in the Direct Draw
|
||||
Surface (DDS) format.
|
||||
|
||||
Features:
|
||||
Load/save DDS files, optionally using DirectX texture compression (DXT)
|
||||
Optional automatic mipmap generation when saving
|
||||
Load mipmaps into separate layers
|
||||
Load cube map faces and volume map slices into separate layers
|
||||
Save cube maps and volume maps with automatic mipmap generation support
|
||||
Save image with a custom pixel format
|
||||
Non-power-of-two image loading and saving support with automatic
|
||||
mipmap generation support
|
||||
Compliant with DirectX 10 block compressed (BC) formats
|
25
gimp-dds/Makefile
Normal file
25
gimp-dds/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $NetBSD: Makefile,v 1.1 2014/10/10 20:40:16 nros Exp $
|
||||
|
||||
DISTNAME= gimp-dds-3.0.1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= https://gimp-dds.googlecode.com/files/
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= https://code.google.com/p/gimp-dds/
|
||||
COMMENT= DDS io gimp plugin
|
||||
LICENSE= gnu-gpl-v2 AND mit
|
||||
|
||||
USE_TOOLS+= gmake pkg-config
|
||||
|
||||
GCC_REQD= 4.9
|
||||
|
||||
gimplibdir = pkg-config --variable=gimplibdir gimp-2.0
|
||||
|
||||
do-install:
|
||||
${INSTALL_LIB_DIR} ${DESTDIR}${gimplibdir:sh}/plug-ins
|
||||
${INSTALL_LIB} ${WRKSRC}/dds \
|
||||
${DESTDIR}${gimplibdir:sh}/plug-ins
|
||||
|
||||
.include "../../graphics/gimp/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
2
gimp-dds/PLIST
Normal file
2
gimp-dds/PLIST
Normal file
|
@ -0,0 +1,2 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2014/10/10 20:40:16 nros Exp $
|
||||
lib/gimp/2.0/plug-ins/dds
|
4
gimp-dds/TODO
Normal file
4
gimp-dds/TODO
Normal file
|
@ -0,0 +1,4 @@
|
|||
only knows that gcc 4.9 works
|
||||
building breaks with gcc 4.5.3
|
||||
|
||||
is it ok to use pkg-config to get gimplibdir?
|
5
gimp-dds/distinfo
Normal file
5
gimp-dds/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2014/10/10 20:40:16 nros Exp $
|
||||
|
||||
SHA1 (gimp-dds-3.0.1.tar.bz2) = f142a6f0794c6ece16047e25a5ed75930cf33cc8
|
||||
RMD160 (gimp-dds-3.0.1.tar.bz2) = a955209209294e7c8faf1e95b50377ec872af63e
|
||||
Size (gimp-dds-3.0.1.tar.bz2) = 470026 bytes
|
Loading…
Reference in a new issue