freebsd-ports/audio/aureal-kmod/Makefile
Rong-En Fan be9750b9c6 - Convert old style rc script to the new world order
- Install kernel modules in PREFIX/modules instead of PREFIX/lib
- Bump PORTREVISION

PR:		ports/124063 (based on)
Submitted by:	Volodymyr Kostyrko <c.kworr at gmail.com>
Tested by:	Volodymyr Kostyrko <c.kworr at gmail.com> (earlier version)
2008-06-15 06:09:12 +00:00

67 lines
1.7 KiB
Makefile

# Ports collection makefile for: aureal-kmod
# Date created: 15 January 2001
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= aureal-kmod
PORTVERSION= 1.5
PORTREVISION= 6
CATEGORIES= audio kld
MASTER_SITES= http://www.matey.org/au88x0/
DISTNAME= au88x0-${PORTVERSION}_${DISTREVISION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A FreeBSD Driver for Aureal Vortex based soundcards
NO_PACKAGE= Should be in sync with the kernel to work correctly
ONLY_FOR_ARCHS= i386
SRCPREFIX?= /usr/src
STRAYFILES= au88x0.h au88x0.c asp10.o asp20.o asp30.o
DISTREVISION= 4
KMODDIR= ${PREFIX}/modules/au88x0
KMODDIR_REL= ${KMODDIR:S%${PREFIX}/%%}
USE_RC_SUBR= aureal
SUB_FILES= pkg-message
SUB_LIST= KMODDIR=${KMODDIR} RC_SUBR_SUFFIX=${RC_SUBR_SUFFIX}
PLIST_SUB= KMODDIR=${KMODDIR_REL}
WRKSRC= ${WRKDIR}
MAKE_ENV= WRKSRC="${WRKSRC}"
MAKE_ARGS= KMODDIR="${KMODDIR}"
# Make sure kernel sources are present before going any further
.if ! exists(${SRCPREFIX}/sys/dev/sound/pcm/sound.c)
IGNORE= "You need to extract kernel source tree before building this package"
.endif
pre-fetch:
.for STRAY in ${STRAYFILES}
.if exists(${SRCPREFIX}/sys/dev/sound/pci/${STRAY})
@${ECHO}
@${ECHO} "You have stray code in your tree. Make sure you"
@${ECHO} "do not have any of the following:"
@${ECHO}
@${ECHO} "${SRCPREFIX}/sys/dev/sound/pci/au88x0.c"
@${ECHO} "${SRCPREFIX}/sys/dev/sound/pci/au88x0.h"
@${ECHO} "${SRCPREFIX}/sys/dev/sound/pci/asp10.o"
@${ECHO} "${SRCPREFIX}/sys/dev/sound/pci/asp20.o"
@${ECHO} "${SRCPREFIX}/sys/dev/sound/pci/asp30.o"
@${ECHO}
@${FALSE}
.endif
.endfor
pre-install:
${MKDIR} ${KMODDIR}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>