diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-10-07 02:56:19 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-10-07 02:56:19 +0000 |
commit | 4c97fac781480b9e55094c6ca6fde0a5b2fa7bc8 (patch) | |
tree | 09bf1b0ba0412ce3204e2e0fa33dc5cd25e92407 /comms/hcfmdm | |
parent | a4af37e2df2c908765329244f0e703ae78c0859a (diff) | |
download | ports-4c97fac781480b9e55094c6ca6fde0a5b2fa7bc8.tar.gz ports-4c97fac781480b9e55094c6ca6fde0a5b2fa7bc8.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.
Notes
Notes:
svn path=/head/; revision=201024
Diffstat (limited to 'comms/hcfmdm')
-rw-r--r-- | comms/hcfmdm/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/comms/hcfmdm/Makefile b/comms/hcfmdm/Makefile index 4f36c71409b1..6eaba2b337e1 100644 --- a/comms/hcfmdm/Makefile +++ b/comms/hcfmdm/Makefile @@ -10,6 +10,7 @@ PORTNAME= hcfmdm PORTVERSION= 0.99.1 +PORTREVISION= 1 CATEGORIES= comms kld MASTER_SITES= http://lug.cbx.ru/files/modem/ \ http://www.int21.de/conexant/ \ @@ -34,8 +35,6 @@ RESTRICTED_FILES= hcfpcimodem-0.99lnxtbeta03042700.tar.gz NO_CDROM= No redistribution allowed NO_PACKAGE= ${NO_CDROM} -STRIP= # do not strip kernel module - LNXTDOCS= README FAQ BUGS PORTDOCS= ${LNXTDOCS} 100498D_RM_HxF_Released.pdf @@ -65,7 +64,7 @@ pre-fetch: do-install: @${MKDIR} ${KMODDIR} - @${INSTALL_PROGRAM} ${BUILD_WRKSRC}/hcfmdm.ko ${KMODDIR}/ + @${INSTALL_KLD} ${BUILD_WRKSRC}/hcfmdm.ko ${KMODDIR}/ .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for i in ${LNXTDOCS} |