diff options
Diffstat (limited to 'graphics/opendis/Makefile')
-rw-r--r-- | graphics/opendis/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/graphics/opendis/Makefile b/graphics/opendis/Makefile new file mode 100644 index 000000000000..54aa3ff3832b --- /dev/null +++ b/graphics/opendis/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: opendis +# Date created: 22 May 2001 +# Whom: Anders Nordby <anders@fix.no> +# +# $FreeBSD$ +# + +PORTNAME= opendis +PORTVERSION= 0.0.3 +CATEGORIES= graphics +MASTER_SITES= http://ods.sourceforge.net/dl/ \ + ftp://ftp.nuug.no/pub/anders/distfiles/ + +MAINTAINER= anders@fix.no + +USE_AUTOCONF= yes +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" + +DOCS= NEWS AUTHORS doc/ERRATA doc/PHILOSOPHY doc/THUMB + +.if !defined(NOPORTDOCS) +post-install: + @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/share/doc/${PORTNAME} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PORTNAME}/ +.endfor +.endif + +.include <bsd.port.mk> |