diff options
Diffstat (limited to 'graphics/gqview-devel/Makefile')
-rw-r--r-- | graphics/gqview-devel/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/graphics/gqview-devel/Makefile b/graphics/gqview-devel/Makefile new file mode 100644 index 000000000..692793414 --- /dev/null +++ b/graphics/gqview-devel/Makefile @@ -0,0 +1,47 @@ +# New ports collection makefile for: gqview +# Date Created: 27 Oct 1998 +# Whom: Vanilla Pooh Shu <vanilla@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gqview +PORTVERSION= 2.1.5 +PORTREVISION= 2 +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= oliver@FreeBSD.org +COMMENT= Another gtk2-based graphic file viewer + +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png + +USE_GNOME= gnomehier gtk20 +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + +MAN1= gqview.1 + +CONFLICTS= gqview-1.4* gqview-2.0* +LATEST_LINK= gqview-devel + +post-patch: + @${REINPLACE_CMD} -e 's|$$prefix/share/doc/gqview-$$VERSION|${DOCSDIR}|g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|$$(datadir)/doc/gqview-$$(VERSION)/html|${DOCSDIR}/html|g' \ + ${WRKSRC}/doc/Makefile.in + +post-install: + ${MKDIR} ${PREFIX}/share/gnome/apps/Graphics + ${INSTALL_DATA} ${WRKSRC}/gqview.desktop ${PREFIX}/share/gnome/apps/Graphics + ${MKDIR} ${PREFIX}/share/pixmaps + ${INSTALL_DATA} ${WRKSRC}/gqview.png ${PREFIX}/share/pixmaps +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> |