1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Support sourcing of Makefile.local by including <bsd.port.pre.mk>

even though I think there are better ways to store per-port configuration:
  sysutils/penv or sysutils/portupgrade ports or /etc/make.conf file)

PR:		ports/64660
Submitted by:	George Hartzell <hartzell@kestrel.alerce.com>
This commit is contained in:
Sergei Kolobov 2004-04-11 21:38:48 +00:00
parent 50d6ef4d5a
commit 64cce5be94
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106738

View File

@ -41,6 +41,8 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.include <bsd.port.pre.mk>
.if defined(WITH_GDBM)
LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdb
CONFIGURE_ARGS+= --with-db=gdbm
@ -112,4 +114,4 @@ post-install:
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
.include <bsd.port.post.mk>