1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/devel/avrdude/Makefile
Mathieu Arnold 4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00

35 lines
772 B
Makefile

# 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: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>