blob: be7283909c74462bf37386ef1dd76f59f03a889d (
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
|
# New ports collection makefile for: pcfclock
# Date created: 23 November 2004
# Whom: Frank W. Josellis <frank@dynamical-systems.org>
#
# $FreeBSD$
#
PORTNAME= pcfclock
PORTVERSION= 0.44
PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://www-stud.ims.uni-stuttgart.de/~voegelas/pcfclock/
MAINTAINER= frank@dynamical-systems.org
COMMENT= Userland access to the pcfclock device
USE_RC_SUBR= pcfdate
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-linux
MAN8= pcfdate.8
PLIST_FILES= sbin/pcfdate
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
IGNORE= not supported for architecture ${ARCH}
.endif
.if ${OSVERSION} < 400000
IGNORE= not supported for versions prior to FreeBSD 4.0
.endif
post-install:
PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.post.mk>
|