mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: eboxy
|
|
# Date created: Sep 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eboxy
|
|
PORTVERSION= 0.3.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://www.bluelightning.org/ebox/files/eboxy/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Create simple GUI interfaces for entertainment PC
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libSDL_gui.so:${PORTSDIR}/x11-toolkits/sdl_gui
|
|
LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \
|
|
SDL_ttf.3:${PORTSDIR}/graphics/sdl_ttf \
|
|
SDL_image.10:${PORTSDIR}/graphics/sdl_image \
|
|
xml2.5:${PORTSDIR}/textproc/libxml2
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/libSDL_gui.so:${PORTSDIR}/x11-toolkits/sdl_gui
|
|
|
|
SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
SDL_CONFIG="${SDL_CONFIG}"
|
|
CONFIGURE_ARGS= --disable-lirc
|
|
|
|
MAN1= eboxy.1
|
|
|
|
CPPFLAGS= `${SDL_CONFIG} --cflags` -I${LOCALBASE}/include
|
|
LDFLAGS= `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib -lgnugetopt
|
|
|
|
post-patch:
|
|
@${GREP} -lR "malloc.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
|
|
-e "s|malloc.h|stdlib.h|g"
|
|
|
|
.include <bsd.port.mk>
|