pkgsrc/databases/db3/buildlink.mk
rh a7603eaafc Fix typo: installed include files are actually include/db3/db.h and
include/db3/db_cxx.h, not "db3.h" and "db3_cxx.h"
2001-08-11 11:20:38 +00:00

36 lines
1.1 KiB
Makefile

# $NetBSD: buildlink.mk,v 1.4 2001/08/11 11:20:38 rh Exp $
#
# This Makefile fragment is included by packages that use db3.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define BUILDLINK_DEPENDS.db3 to the dependency pattern
# for the version of db3 desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
# search path, and
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
# path.
.if !defined(DB3_BUILDLINK_MK)
DB3_BUILDLINK_MK= # defined
.include "../../mk/bsd.buildlink.mk"
BUILDLINK_DEPENDS.db3?= db3>=2.9
DEPENDS+= ${BUILDLINK_DEPENDS.db3}:../../databases/db3
EVAL_PREFIX+= BUILDLINK_PREFIX.db3=db3
BUILDLINK_PREFIX.db3_DEFAULT= ${LOCALBASE}
BUILDLINK_FILES.db3= include/db3/db_cxx.h
BUILDLINK_FILES.db3+= include/db3/db.h
BUILDLINK_FILES.db3+= lib/libdb3.*
BUILDLINK_FILES.db3+= lib/libdb3_cxx.*
BUILDLINK_TARGETS.db3= db3-buildlink
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.db3}
pre-configure: ${BUILDLINK_TARGETS.db3}
db3-buildlink: _BUILDLINK_USE
.endif # DB3_BUILDLINK_MK