- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
--- src/Imakefile.orig Mon Oct 18 18:35:58 1999
|
|
+++ src/Imakefile Sat Apr 9 17:20:36 2005
|
|
@@ -5,9 +5,9 @@
|
|
|
|
ICONS = WSoundPrefs.xpm WSoundPrefs.tiff
|
|
|
|
-CC = gcc
|
|
+XCOMM CC = gcc
|
|
|
|
-BINDIR = /Apps/WSoundPrefs.app
|
|
+BINDIR = /GNUstep/Apps/WSoundPrefs.app
|
|
|
|
XCOMM EFENCELIB = -lefence
|
|
EFENCELIB =
|
|
@@ -18,19 +18,19 @@
|
|
WRASTERCFLAGS = `get-wraster-flags --cflags`
|
|
WRASTERLFLAGS = `get-wraster-flags --lflags`
|
|
WRASTERLIBS = `get-wraster-flags --libs`
|
|
-WINGSLIBS = -lWINGs -lPropList
|
|
-
|
|
-STD_INCLUDES = $(WRASTERCFLAGS) $(WSOUNDCFLAGS)
|
|
+WINGSLIBS = -lWINGs -L/$(LOCALBASE)/lib -lPropList
|
|
+
|
|
+STD_INCLUDES = $(WRASTERCFLAGS) -I${LOCALBASE}/include -I${LOCALBASE}/include/WINGs
|
|
DEPLIBS = $(DEPXLIB)
|
|
|
|
-LOCAL_LIBRARIES = $(XLIB) $(WINGSLIBS) $(WSOUNDLFLAGS) $(WSOUNDLIBS) $(WRASTERLFLAGS) $(WRASTERLIBS) $(EFENCELIB)
|
|
+LOCAL_LIBRARIES = $(XLIB) $(WINGSLIBS) $(WSOUNDLFLAGS) $(WSOUNDLIBS) $(WRASTERLFLAGS) $(WRASTERLIBS) $(EFENCELIB) $(FONTCONFIGLIB) $(XFTLIB) -lintl
|
|
|
|
LINTLIBS = $(LINTXLIB)
|
|
|
|
SRCS = PLFunctions.c SoundEvents.c SoundPaths.c SystemInfo.c WSoundPrefs.c main.c
|
|
OBJS = PLFunctions.o SoundEvents.o SoundPaths.o SystemInfo.o WSoundPrefs.o main.o
|
|
|
|
-ComplexProgramTarget(WSoundPrefs)
|
|
+ComplexProgramTargetNoMan(WSoundPrefs)
|
|
|
|
InstallMultiple($(ICONS),$(BINDIR))
|
|
|