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 /comms/hcfmdm | |
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 '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} |