ca70938428
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
27 lines
843 B
Makefile
27 lines
843 B
Makefile
# $NetBSD: Makefile,v 1.15 2004/08/27 06:29:06 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= fugu-1.0
|
|
PKGREVISION= 1
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://fugu.gale.org/dist/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://fugu.gale.org/
|
|
COMMENT= Graphical client for the gale secure instant messaging system
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 20 21 # no 22 - uses Makefile.pre.in
|
|
|
|
USE_BUILDLINK3= YES
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ENV+= vi_cv_path_python=${PYTHONBIN}
|
|
LDFLAGS+= -L${BUILDLINK_PREFIX.py-Pmw}/lib \
|
|
${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.py-Pmw}/lib
|
|
CPPFLAGS+= -I${BUILDLINK_PREFIX.py-Pmw}/include \
|
|
-I${BUILDLINK_PREFIX.rsaref}/include/rsaref \
|
|
-I${BUILDLINK_PREFIX.rsaref}/include
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../security/rsaref/buildlink3.mk"
|
|
.include "../../x11/py-Pmw/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|