mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
87712f144e
> I'm a bit confused here - where am I using the -fpic flag? It comes from kmod.mk, I think. Anyway, it turns out this is a bug in kmod.mk and kernel modules are not yet implemented on amd64. The previous change should be backed out - sorry for the misleading suggestion.
28 lines
633 B
Makefile
28 lines
633 B
Makefile
# New ports collection makefile for: kix-kmod
|
|
# Date created: 4 January 2003
|
|
# Whom: Jonathan Belson <jon@witchspace.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kix
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.witchspace.com/files/
|
|
PKGNAMESUFFIX= -kmod
|
|
|
|
MAINTAINER= jon@witchspace.com
|
|
COMMENT= A graphical screensaver kernel module
|
|
|
|
.if !exists(/usr/src/sys/dev/syscons/syscons.h)
|
|
BROKEN= "Requires kernel source (/usr/src/sys) to build"
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/kix_saver.ko ${PREFIX}/lib
|
|
|
|
post-install:
|
|
@${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|