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 /emulators/snespp | |
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 'emulators/snespp')
-rw-r--r-- | emulators/snespp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/snespp/Makefile b/emulators/snespp/Makefile index ba512e18a95d..c47c31d77467 100644 --- a/emulators/snespp/Makefile +++ b/emulators/snespp/Makefile @@ -7,6 +7,7 @@ PORTNAME= snespp PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= emulators kld MASTER_SITES= http://www.cse.unsw.edu.au/~tbourke/software/ DISTNAME= ${PORTNAME}-${PORTVERSION} @@ -30,6 +31,6 @@ IGNORE= versions of FreeBSD before 6.0 are not supported do-install: @${INSTALL_MAN} ${WRKSRC}/snespp.4 ${PREFIX}/man/man4 - @${INSTALL_PROGRAM} ${WRKSRC}/snespp.ko ${KMODDIR} + @${INSTALL_KLD} ${WRKSRC}/snespp.ko ${KMODDIR} .include <bsd.port.post.mk> |