diff options
author | jtb <jtb@pkgsrc.org> | 2000-11-25 19:02:27 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2000-11-25 19:02:27 +0000 |
commit | 03ebd7f37d202719f417a34330d18f8442fb0511 (patch) | |
tree | 83be2b0b49468a758635d2598a1d20084c79a118 /graphics/xzgv/Makefile | |
parent | 39c6b3e106d05cacde825e944bc1f9b373d28960 (diff) | |
download | pkgsrc-03ebd7f37d202719f417a34330d18f8442fb0511.tar.gz |
Initial import of new "xzgv" package:
Image viewer
Diffstat (limited to 'graphics/xzgv/Makefile')
-rw-r--r-- | graphics/xzgv/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/graphics/xzgv/Makefile b/graphics/xzgv/Makefile new file mode 100644 index 00000000000..07e0e9d61e5 --- /dev/null +++ b/graphics/xzgv/Makefile @@ -0,0 +1,35 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/11/25 19:02:27 jtb Exp $ + +DISTNAME= xzgv-0.6 +CATEGORIES= graphics +MASTER_SITES= http://xzgv.browser.org/ \ + ftp://ftp.ibiblio.org/pub/Linux/apps/graphics/viewers/X/ + +MAINTAINER= jtb@netbsd.org +HOMEPAGE= http://xzgv.browser.org/ + +DEPENDS+= gtk+>=1.2.0:../../x11/gtk +DEPENDS+= glib-[0-9]*:../../devel/glib +DEPENDS+= libungif-[0-9]*:../../graphics/libungif +DEPENDS+= jpeg-[0-9]*:../../graphics/jpeg +DEPENDS+= png-[0-9]*:../../graphics/png +DEPENDS+= tiff-[0-9]*:../../graphics/tiff +DEPENDS+= imlib>=1.0:../../graphics/imlib + +INFO_FILES= xzgv +USE_X11BASE= yes +USE_GMAKE= yes + +.if (${MACHINE_ARCH} == "i386") +MAKE_ENV+="CPPFLAGS=-DINTERP_MMX" +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/xzgv ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/xzgv.1 ${PREFIX}/man/man1 + @(cd ${WRKSRC}/doc && makeinfo xzgv.texi) + @for f in xzgv xzgv-1 xzgv-2 xzgv-3 ; do \ + ${INSTALL_DATA} ${WRKSRC}/doc/$$f ${PREFIX}/info ; done + +.include "../../mk/bsd.pkg.mk" + |