mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
cc27f63556
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
27 lines
549 B
Makefile
27 lines
549 B
Makefile
# Created by: tmartin@andrew.cmu.edu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= senken
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 13
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_GENTOO}
|
|
MASTER_SITE_SUBDIR= distfiles
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= City simulation game
|
|
|
|
USES= pkgconfig
|
|
USE_GNOME= gtk20
|
|
USE_SDL= image sdl
|
|
GNU_CONFIGURE= yes
|
|
LDFLAGS+= -lm
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-I/usr/X11R6/include||g ; \
|
|
s|-L/usr/X11R6/lib||g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e '/install-sh -d/d' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|