diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-07 10:56:19 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-07 10:56:19 +0800 |
commit | a2ab1c92626150c186b51a1c1110d4bdbf7bba5d (patch) | |
tree | 43df51e08403ed3acae47a1abb717b5fa7dc0ba5 /net/ng_daphne | |
parent | df212ea665e32c331f1268d5b03dbb0dcca46137 (diff) | |
download | freebsd-ports-gnome-a2ab1c92626150c186b51a1c1110d4bdbf7bba5d.tar.gz freebsd-ports-gnome-a2ab1c92626150c186b51a1c1110d4bdbf7bba5d.tar.zst freebsd-ports-gnome-a2ab1c92626150c186b51a1c1110d4bdbf7bba5d.zip |
Replace all INSTALL_DATA/INSTALL_SCRIPT and INSTALL_PROGRAM/STRIP=
hacks to install kernel loadable modules correctly on amd64 platforms
with the new INSTALL_KLD command.
All PORTREVISIONS have been bumped to show when the new version of
installing became available.
Diffstat (limited to 'net/ng_daphne')
-rw-r--r-- | net/ng_daphne/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ng_daphne/Makefile b/net/ng_daphne/Makefile index 693521828ea3..1e66a12f5448 100644 --- a/net/ng_daphne/Makefile +++ b/net/ng_daphne/Makefile @@ -7,6 +7,7 @@ PORTNAME= ng_daphne PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= net kld MASTER_SITES= http://newton.ee.auth.gr/ng_daphne/ @@ -26,7 +27,7 @@ PLIST_FILES= lib/ng_daphne.ko PORTDOCS= README do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ng_daphne.ko ${PREFIX}/lib + ${INSTALL_KLD} ${WRKSRC}/ng_daphne.ko ${PREFIX}/lib .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} |