1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Respect PREFIX

PR:		87954
Submitted by:	Alejandro Pulver <alejandro@varnet.biz> (maintainer)
This commit is contained in:
Marcus Alves Grando 2005-10-26 20:04:20 +00:00
parent d82dc91129
commit 4bde1950ca
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=146440
2 changed files with 7 additions and 18 deletions

View File

@ -21,17 +21,9 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_BZIP2= yes
USE_GMAKE= yes
USE_REINPLACE= yes
USE_GL= yes
USE_SDL= image sdl ttf
post-patch:
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}| ; \
s|%%CFLAGS%%|${CFLAGS}| ; \
s|%%DATADIR%%|${DATADIR}| ; \
s|%%X11BASE%%|${X11BASE}|' \
${WRKSRC}/${MAKEFILE}
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}

View File

@ -1,22 +1,19 @@
--- Makefile.orig Thu Jul 29 14:17:13 2004
+++ Makefile Fri Aug 19 15:00:16 2005
@@ -1,12 +1,11 @@
+++ Makefile Mon Oct 24 17:19:43 2005
@@ -1,10 +1,8 @@
-CC=g++
-CFLAGS=`sdl-config --cflags` #-g -Wall #-O2
+CFLAGS=%%CFLAGS%% -I%%X11BASE%%/include `sdl-config --cflags` #-g -Wall #-O2
+CFLAGS += -I${X11BASE}/include `${SDL_CONFIG} --cflags`
#CFLAGS=`sdl-config --cflags` -I./physfs#-g -Wall #-O2
OBJS := ${patsubst %.cpp, %.o, ${wildcard src/*.cpp}}
-LIBS = -s -Bstatic `sdl-config --static-libs` -lSDL_image -lSDL_ttf -L. -lphysfs -lopenal -Bdynamic -lGL -lGLU
+LIBS = -L%%X11BASE%%/lib `sdl-config --libs` -lSDL_image -lSDL_ttf -lphysfs -lopenal -lGL -lGLU
+LIBS = -L${X11BASE}/lib `${SDL_CONFIG} --libs` -lSDL_image -lSDL_ttf -lphysfs -lopenal -lGL -lGLU
#LIBS = -s -Bstatic `sdl-config --static-libs` SDL_image/*.o SDL_ttf/*.o -L. physfs/*.o openal/*.o -ljpeg -lpng -ltiff -lfreetype -Bdynamic -lGL -lGLU
PREFIX=/usr/local
-PREFIX=/usr/local
BINDIR=$(PREFIX)/bin/
-DATADIR=$(PREFIX)/share/excido/
+DATADIR=%%DATADIR%%/
DATADIR=$(PREFIX)/share/excido/
INSTALL=/usr/bin/install
@@ -28,9 +27,9 @@
@@ -28,9 +26,9 @@
install:
[ -d $(BINDIR) ] || mkdir $(BINDIR)