diff options
author | will <will@FreeBSD.org> | 2001-06-09 00:54:25 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-06-09 00:54:25 +0800 |
commit | 0224c7c976d808111a75a10e5c271a9af742865b (patch) | |
tree | c77d6591fe43e4733c9d1f1a5dd54c5c6cddf9f3 /graphics/opendis/Makefile | |
parent | 87859631daaaaf1ef6e18461694bcc19739f7536 (diff) | |
download | freebsd-ports-gnome-0224c7c976d808111a75a10e5c271a9af742865b.tar.gz freebsd-ports-gnome-0224c7c976d808111a75a10e5c271a9af742865b.tar.zst freebsd-ports-gnome-0224c7c976d808111a75a10e5c271a9af742865b.zip |
Add opendis 0.0.3, a program to access Flashpoint Digita-based
cameras, download images and more.
PR: 27537
Submitted by: Anders Nordby <anders@fix.no>
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> |