560d2eb0bf
The following ports will not build with a binutils 2.22+ linker built with standard options. This has been obvious with DPorts, but difficult to see on FreeBSD. However, setting the ports compiler as a recent gcc (e.g lang/gcc48) is an excellent way to detect the unspecified but needed libraries as these recent GCC compilers use the latest binutils linkers. These patches were tested on FreeBSD 8.4 and DragonFly 3.5
33 lines
595 B
Makefile
33 lines
595 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lafontaine
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://www.nongnu.org/lafontaine/archives/
|
|
DISTNAME= ${PORTNAME}_0.4-1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphical logo interpreter
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-0.4
|
|
|
|
USES= pathfix gmake pkgconfig
|
|
USE_GNOME= gtk20
|
|
GNU_CONFIGURE= yes
|
|
USE_CSTD= gnu89
|
|
LDFLAGS+= -lm
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|