diff options
author | kevlo <kevlo@FreeBSD.org> | 2000-11-26 23:10:07 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2000-11-26 23:10:07 +0800 |
commit | 7722b5615281cd50d83cc416370f8da59097a8b1 (patch) | |
tree | 8242ec0dfbac3ed2afa2a296877afcc24651c63c /databases | |
parent | a13eee7a6202262094e0aaa849a74b0f1fd70f96 (diff) | |
download | freebsd-ports-gnome-7722b5615281cd50d83cc416370f8da59097a8b1.tar.gz freebsd-ports-gnome-7722b5615281cd50d83cc416370f8da59097a8b1.tar.zst freebsd-ports-gnome-7722b5615281cd50d83cc416370f8da59097a8b1.zip |
Support install macros.
PR: 23072
Submitted by: Ports Fury
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 |