diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-10-27 09:02:53 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-10-27 09:02:53 +0000 |
commit | 15ae431f9380e198d89be039647e62d51d5b652b (patch) | |
tree | d5ed6acce7e8786c7bc5796266471017d82538d0 /graphics/giram/Makefile | |
parent | 18f920d66d37df40ece1e000d3e6594823c714c6 (diff) |
- Resurrect this port, make it build cleanly
- Take maintainership
Approved by: fjoe (mentor, implicit), linimon
Notes
Notes:
svn path=/head/; revision=120301
Diffstat (limited to 'graphics/giram/Makefile')
-rw-r--r-- | graphics/giram/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/graphics/giram/Makefile b/graphics/giram/Makefile new file mode 100644 index 000000000000..9cf57b08e056 --- /dev/null +++ b/graphics/giram/Makefile @@ -0,0 +1,47 @@ +# New ports collection makefile for: giram +# Date created: 17 June 1999 +# Whom: Brandon Fosdick <bfoz@glue.umd.edu> +# +# $FreeBSD$ +# + +PORTNAME= giram +PORTVERSION= 0.3.5 +PORTREVISION= 3 +CATEGORIES= graphics +MASTER_SITES= http://www.giram.org/downloads/ + +MAINTAINER= danfe@FreeBSD.org +COMMENT= A POV-Ray oriented modeller + +LIB_DEPENDS= 3ds.1:${PORTSDIR}/graphics/lib3ds + +USE_X_PREFIX= yes +USE_PERL5_BUILD= yes +USE_GNOME= gtk20 +USE_GMAKE= yes +USE_LIBTOOL_VER=13 +LIBTOOLFLAGS= # none +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + INTLTOOL_PERL="${PERL}" +CONFIGURE_ARGS= --datadir="${PREFIX}/lib" \ + --with-tutorial-path="${DOCSDIR}" \ + --with-lib3ds-prefix="${LOCALBASE}" +MAN1= giram.1 + +.if defined(WITH_POVRAY31) +BUILD_DEPENDS+= povray:${PORTSDIR}/graphics/povray31 +RUN_DEPENDS+= povray:${PORTSDIR}/graphics/povray31 +.else +BUILD_DEPENDS+= povray:${PORTSDIR}/graphics/povray +RUN_DEPENDS+= povray:${PORTSDIR}/graphics/povray +.endif + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/samples/*.pov ${EXAMPLESDIR} +.endif + +.include <bsd.port.mk> |