mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
7f37a892ef
- Switch to USES=libtool:oldver - Convert LIB_DEPENDS to new style - Add stage support - Use install-strip target - Remove deprecated PTHREAD_FLAGS/LIBS - Use options helpers - Add missing NLS option to OPTIONS_DEFINE [1] - Drop maintainership: kdegames don't need these ports anymore Prompted by: ehaupt [1]
30 lines
621 B
Makefile
30 lines
621 B
Makefile
# $FreeBSD$
|
|
|
|
# common settings
|
|
|
|
GGZ_VERSION= 0.0.14.1
|
|
|
|
MASTER_SITES= \
|
|
http://mirrors.dotsrc.org/ggzgamingzone/ggz/%SUBDIR%/ \
|
|
http://ftp.ggzgamingzone.org/pub/ggz/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= ${PORTVERSION}
|
|
DIST_SUBDIR= ggz
|
|
|
|
# components section
|
|
|
|
_USE_GGZ_ALL= core client
|
|
|
|
core_LIB_DEPENDS= libggz.so:${PORTSDIR}/games/libggz
|
|
|
|
client_LIB_DEPENDS= libggzcore.so:${PORTSDIR}/games/ggz-client-libs
|
|
|
|
.for component in ${USE_GGZ}
|
|
LIB_DEPENDS+= ${${component}_LIB_DEPENDS}
|
|
. endfor
|
|
|
|
.for component in ${USE_GGZ}
|
|
. if ${_USE_GGZ_ALL:M${component}}==""
|
|
IGNORE= cannot install: Unknown component ${component}
|
|
. endif
|
|
.endfor
|