0ecea7d9d6
to be present, or does not compile on certain versions of FreeBSD. This will potentially avoid needless compilations on bento, and has the added benefit of improving certain reporting tools. To most users, this change is a no-op. PR: 61090 Submitted by: linimon
119 lines
2.9 KiB
Makefile
119 lines
2.9 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= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://home.columbus.rr.com/amatey/au88x0/
|
|
DISTNAME= au88x0-${PORTVERSION}_${PORTREVISION}
|
|
|
|
MAINTAINER= ports@matey.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
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
PKGMESSAGE= ${WRKSRC}/.MESSAGE
|
|
|
|
MAKE_ENV= WRKSRC="${WRKSRC}"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${SRCPREFIX}/sys/dev/sound/pcm/sound.c)
|
|
VERSION_SOUND_C!= ident < ${SRCPREFIX}/sys/dev/sound/pcm/sound.c | \
|
|
${AWK} '{ print $$3; exit }'
|
|
.else
|
|
VERSION_SOUND_C=
|
|
.endif
|
|
|
|
VERSION_SOUND_C_MINOR:= ${VERSION_SOUND_C:S/^1.//:S/^17.2.//}
|
|
|
|
.if ${OSVERSION} < 410000
|
|
IGNORE= "FreeBSD 3.*, 4.0 are not supported"
|
|
|
|
.elif ${OSVERSION} < 420000
|
|
# FreeBSD 4.1, 4.1.1
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 3
|
|
|
|
.elif ${OSVERSION} < 440000
|
|
# FreeBSD 4.2, 4.3
|
|
PORTVERSION= 1.3
|
|
|
|
.if ${VERSION_SOUND_C_MINOR} < 4
|
|
# FreeBSD 4.2 before kobj MFC
|
|
PORTREVISION= 1
|
|
|
|
.else
|
|
# FreeBSD 4.2 after kobj MFC, FreeBSD 4.3
|
|
PORTREVISION= 2
|
|
MAKE_ENV+= HAVE_KOBJ_PCM=1
|
|
.endif
|
|
|
|
.elif ${OSVERSION} < 450004
|
|
# FreeBSD 4.4, 4.5-
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 3
|
|
MAKE_ENV+= HAVE_KOBJ_PCM=1
|
|
|
|
.elif ${OSVERSION} < 500000
|
|
# FreeBSD 4.5+, 4.6, 4.7, 4.8-
|
|
.if ${VERSION_SOUND_C_MINOR} < 12
|
|
IGNORE= "Base system is outdated. This port needs -STABLE after 2002-04-22."
|
|
.endif
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 4
|
|
MAKE_ENV+= HAVE_KOBJ_PCM=1
|
|
.endif
|
|
|
|
.if ${OSVERSION} > 500000
|
|
# FreeBSD 5-CURRENT
|
|
.if ${VERSION_SOUND_C_MINOR} < 70
|
|
IGNORE= "Base system is outdated. This port needs -CURRENT after 2002-04-04."
|
|
.endif
|
|
.endif
|
|
|
|
# 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:
|
|
@${SED} 's|%%PREFIX%%|${PREFIX}|g' ${PKGDIR}/pkg-message > \
|
|
${PKGMESSAGE}
|
|
@${SED} 's|%%PREFIX%%|${PREFIX}|g' ${FILESDIR}/aureal.sh > \
|
|
${WRKDIR}/aureal.sh.sample
|
|
${MKDIR} ${PREFIX}/lib/au88x0
|
|
|
|
post-install:
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/aureal.sh.sample ${PREFIX}/etc/rc.d
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|