1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00

- Do not depend on databases/grass, as that results in a cyclic dependency.

- Fix grass installation location.

PR:		125111
Submitted by:	Koji Yokota <yokota@res.otaru-uc.ac.jp>
Approved by:	maintainer timeout (>2 months)
This commit is contained in:
Stefan Walter 2008-10-22 17:13:37 +00:00
parent 56b786d1d1
commit 5a020090ab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=221905

View File

@ -103,9 +103,9 @@ CONFIGURE_ARGS+= --with-libgif=${LOCALBASE}
.endif
.if defined(WITH_GRASS)
LIB_DEPENDS+= grass_gis:${PORTSDIR}/databases/grass
CONFIGURE_ARGS+= --with-grass=${LOCALBASE} \
--with-grasslib=${LOCALBASE}/lib
GRASS_INST_DIR= grass
CONFIGURE_ARGS+= --with-grass=${LOCALBASE}/${GRASS_INST_DIR} \
--with-grasslib=${LOCALBASE}/${GRASS_INST_DIR}/lib
.else
CONFIGURE_ARGS+= --with-grass=no
.endif