aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/devcpu-data/Makefile
blob: 96d5feff2fd19925f7ba1d17e20a9447ec863b54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# New ports collection makefile for:    devcpu-data
# Date created:     2007-07-19
# Whom:         stas
#
# $FreeBSD$
#

PORTNAME=   data
PORTVERSION=    0.6
PORTREVISION=   0
CATEGORIES= sysutils
MASTER_SITES=   ftp://ftp.SpringDaemons.com/soft/
PKGNAMEPREFIX=  devcpu-
DISTNAME=   ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    Intel and AMD CPUs microcode updates

USE_BZIP2=  yes
NO_BUILD=   yes

ONLY_FOR_ARCHS= i386 amd64

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 701102
DATADIR=    ${PREFIX}/share/cpucontrol
.else
DATADIR=    ${PREFIX}/share/devcpu
.endif

USE_RC_SUBR=    microcode_update

do-install:
    ${MKDIR} ${DATADIR}/
    ${INSTALL_DATA} ${WRKSRC}/mcodes/* ${DATADIR}/
    @${TOUCH} ${DATADIR}/.do_not_delete

post-install:
    @${FIND} -ds ${DATADIR}/ ! -type d | \
        ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
    @${ECHO_CMD} "@unexec rmdir %D/${DATADIR:S,^${PREFIX},,}" >> ${TMPPLIST}

.include <bsd.port.post.mk>