mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
29a23b8db4
After FreeBSD 12.0 EOL we no longer have to worry about LLD 6 and can drop LLD_UNSAFE from openal-soft ports. LLD can link them fine now but some ports needs a little help on i386 (-Wl,-znotext). PR: 226980 Reviewed by: jbeich (earlier version) Differential Revision: https://reviews.freebsd.org/D23030
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
# Created by: Eric Anholt <anholt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= chromium-bsu
|
|
PORTVERSION= 0.9.16.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/Chromium%20B.S.U.%20source%20code/
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Arcade-style, top-scrolling space shooter
|
|
|
|
LICENSE= ART10
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libGLC.so:graphics/quesoglc
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= compiler:c++11-lang gettext-tools gl gmake gnome localbase \
|
|
pkgconfig sdl
|
|
USE_SDL= sdl2 image2
|
|
USE_GL= gl glu
|
|
CONFIGURE_ARGS= --disable-sdl \
|
|
--disable-sdlmixer \
|
|
--disable-sdlimage \
|
|
--disable-ftgl \
|
|
--disable-glut \
|
|
--disable-glpng
|
|
MAKE_ARGS= LDFLAGS="${LDFLAGS}"
|
|
LDFLAGS_i386= -Wl,-znotext
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
|
|
OPTIONS_DEFINE= NLS DOCS
|
|
OPTIONS_SINGLE= AUDIO
|
|
OPTIONS_SINGLE_AUDIO= OPENAL SDL_MIXER
|
|
OPTIONS_DEFAULT= OPENAL
|
|
OPTIONS_SUB= yes
|
|
|
|
AUDIO_DESC= Audio output selection
|
|
OPENAL_DESC= Use OpenAL for audio
|
|
SDL_MIXER_DESC= Use SDL_mixer for audio
|
|
|
|
SDL_MIXER_USE= SDL=mixer2
|
|
SDL_MIXER_CONFIGURE_ENABLE=sdl2mixer
|
|
OPENAL_USES= openal:al,alut
|
|
OPENAL_CONFIGURE_ENABLE=openal
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
.include <bsd.port.mk>
|