blob: eac7f0422c05ffd2719a5840c0afeb98af1b4545 (
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
|
# New ports collection makefile for: aldo
# Date created: 16 March 2004
# Whom: lambert@lambertfam.org
#
# $FreeBSD$
#
PORTNAME= aldo
PORTVERSION= 0.6.3
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= lambert@lambertfam.org
COMMENT= Morse code training program
USE_BZIP2= yes
USE_GMAKE= yes
MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
PLIST_FILES= bin/aldo
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 502126
BROKEN= "Does not compile on FreeBSD >= 5.x"
.endif
.if ${OSVERSION} < 500000
USE_GCC= 3.3
MAKE_ENV+= CXX="${CXX}"
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/aldo ${PREFIX}/bin
.include <bsd.port.post.mk>
|