diff options
author | cheusov <cheusov> | 2012-07-22 13:00:41 +0000 |
---|---|---|
committer | cheusov <cheusov> | 2012-07-22 13:00:41 +0000 |
commit | 290fc1739e3cf3d7180a38fa0dba9dd41cc75da6 (patch) | |
tree | 56a2dc2ffcedda3025f33bd2000cee6849073ca5 /devel/mk-configure/Makefile | |
parent | 918c6df75eac3a4624c76fd8cfd82dfae90ca764 (diff) | |
download | pkgsrc-290fc1739e3cf3d7180a38fa0dba9dd41cc75da6.tar.gz |
Update to 0.23.0
mkc.subprj.mk:
- Support for "virtual" subproject was added. Subprojects listed
in SUBPRJ and SUBPRJS_DFLT are not necessarily associated with
a subdirectory. See examples/hello_superfs for example.
Virtual subproject is a way to group several subprojects into
new one.
New variables were introduced: COPTS_<proj> OBJCOPTS_<proj>
LDADD_<proj> LDFLAGS_<proj> CPPFLAGS_<proj> CXXFLAGS_<proj>.
See the manual page for details.
Fix: OBJDIR_<subdir> variables now always contain full paths.
Fix in mkc_which(1). Now it differs directories and regular files.
Minor fixes in regression tests for EXPORT_SYMBOLS.
mkc.lib.mk:
- SHLIB_MINOR unconditionally defaults to 0
More slides in .pdf presentation:
- cross-compilation
- EXPORT_SYMBOLS
Fixes for Pascal support
Minor fixes in the man page
Diffstat (limited to 'devel/mk-configure/Makefile')
-rw-r--r-- | devel/mk-configure/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/mk-configure/Makefile b/devel/mk-configure/Makefile index 44a3583caac..159209ce268 100644 --- a/devel/mk-configure/Makefile +++ b/devel/mk-configure/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2012/03/09 18:56:21 cheusov Exp $ +# $NetBSD: Makefile,v 1.8 2012/07/22 13:00:41 cheusov Exp $ # -DISTNAME= mk-configure-0.22.0 +DISTNAME= mk-configure-0.23.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mk-configure/} \ http://mova.org/~cheusov/pub/mk-configure/ @@ -27,6 +27,8 @@ AUTO_MKDIRS= yes PKGDOCDIR= share/doc/mk-configure EGDIR= share/examples/mk-configure +#TEST_TARGET= test + post-install: .for i in ${DOC_FILES} ${INSTALL_DATA} ${WRKSRC}/"${i}" ${DESTDIR}${PREFIX}/${PKGDOCDIR} |