mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
0d2725682b
structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: eboxy
|
|
# Date created: Sep 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eboxy
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Create simple GUI interfaces for entertainment PC
|
|
|
|
USE_BISON= yes
|
|
USE_BZIP2= yes
|
|
USE_SDL= sdl gui mixer
|
|
USE_GNOME= gnometarget libxml2 lthack
|
|
USE_GETOPT_LONG= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --disable-lirc
|
|
|
|
MAN1= eboxy.1
|
|
|
|
CPPFLAGS= `${SDL_CONFIG} --cflags` -I${LOCALBASE}/include \
|
|
-DHAVE_DECL_GETOPT -fPIC
|
|
LDFLAGS= `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "ia64"
|
|
BROKEN= "Configure fails on ia64"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O2 $$CFLAGS|$$CFLAGS|g ; \
|
|
s|-O2 $$CXXFLAGS|$$CXXFLAGS|g' ${WRKSRC}/configure
|
|
|
|
pre-build:
|
|
@cd ${WRKSRC}/eboxy && ${SH} ./makeparser.sh
|
|
|
|
.include <bsd.port.post.mk>
|