diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2000-11-26 15:10:07 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2000-11-26 15:10:07 +0000 |
commit | 29ff0861859dcf5c23b7de933a51a8179b27353d (patch) | |
tree | 8eee626fb935e2afbde9abf0dd242d339c004f74 /databases | |
parent | Temporarily unbroke for XFree86-4. (diff) |
Support install macros.
PR: 23072
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=35445
Diffstat (limited to 'databases')
-rw-r--r-- | databases/cdb/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/databases/cdb/Makefile b/databases/cdb/Makefile index 8b69808dd242..a4e8bdfd10d7 100644 --- a/databases/cdb/Makefile +++ b/databases/cdb/Makefile @@ -13,7 +13,6 @@ MASTER_SITES= http://cr.yp.to/cdb/ MAINTAINER= ports@FreeBSD.org ALL_TARGET= it -INSTALL_TARGET= setup do-configure: @${MV} ${WRKSRC}/conf-home ${WRKSRC}/conf-home.orig @@ -23,7 +22,13 @@ do-configure: @${MV} ${WRKSRC}/conf-ld ${WRKSRC}/conf-ld.orig ${ECHO} ${CC} -s > ${WRKSRC}/conf-ld -post-install: +do-install: +.for file in cdbdump cdbget cdbmake cdbstats cdbtest + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor +.for file in cdbmake-12 cdbmake-sv + ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor ${INSTALL_DATA} ${WRKSRC}/cdb.h ${PREFIX}/include ${INSTALL_DATA} ${WRKSRC}/cdb.a ${PREFIX}/lib/libcdb.a |