aboutsummaryrefslogtreecommitdiffstats
path: root/audio/yell/Makefile
blob: 32085c1a58ee69ae6a2fa81890d602d29ac28432 (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
# New ports collection makefile for:   yell
# Date created:     10 August 2004
# Whom:         Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#

PORTNAME=   yell
PORTVERSION=    1.0
CATEGORIES= audio
MASTER_SITES=   http://www.critical.ch/yell/

MAINTAINER= ehaupt@FreeBSD.org
COMMENT=    A command line speaker bell using machine/speaker.h

PLIST_FILES=    bin/yell

ONLY_FOR_ARCHS= i386

pre-everything::
.if !defined(WITH_SUID)
    @${ECHO_CMD} ""
    @${ECHO_CMD} "You can define WITH_SUID if you want yell to be installed with"
    @${ECHO_CMD} "the sticky bit (mode 4110)"
    @${ECHO_CMD} ""
.endif

do-build:
    ${CC} ${WRKSRC}/yell.c ${CFLAGS} -o ${WRKSRC}/${PORTNAME}

do-install:
.if defined(WITH_SUID)
    ${INSTALL_PROGRAM} -m 4110 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.else
    ${INSTALL_PROGRAM} -m 0100 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.endif

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>