aboutsummaryrefslogtreecommitdiffstats
path: root/devel/avrdude/Makefile
blob: a09a3fa4bf4971752c753371960f576a8433f2c1 (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
# Created by: Brian Dean <bsd@FreeBSD.org>
# $FreeBSD$

PORTNAME=   avrdude
PORTVERSION=    6.1
PORTREVISION=   1
CATEGORIES= devel
MASTER_SITES=   SAVANNAH/avrdude

MAINTAINER= joerg@FreeBSD.org
COMMENT=    Program for programming the on-chip memory of Atmel AVR CPUs

LICENSE=    GPLv2
LICENSE_FILE=   ${WRKSRC}/COPYING

GNU_CONFIGURE=  yes
LDFLAGS+=   -L${LOCALBASE}/lib
CFLAGS+=    -I${LOCALBASE}/include
MAKE_JOBS_UNSAFE=   yes

OPTIONS_DEFINE= FTDI
OPTIONS_DEFAULT=    FTDI
FTDI_DESC=  libftdi support
FTDI_LIB_DEPENDS=   libftdi1.so:${PORTSDIR}/devel/libftdi1

.include <bsd.port.options.mk>

post-patch:
    @${REINPLACE_CMD} -e 's|-lusb-1.0|-lusb|g' ${WRKSRC}/configure
.if ! ${PORT_OPTIONS:MFTDI}
    @${REINPLACE_CMD} -e '/LIBS=/ s|-lftdi1*|&-do-not-detect|' ${WRKSRC}/configure
.endif

.include <bsd.port.mk>