aboutsummaryrefslogtreecommitdiff
path: root/net/wmnet
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-04-19 17:56:05 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-04-19 17:56:05 +0000
commit3e4ed01146cfe2bdca465bd0e4d199341f62a0b6 (patch)
treed573ea09b2bf6be67cb497df199932da9e2707c4 /net/wmnet
parent40049f4af2200d0dcf33596508688623fc75f764 (diff)
downloadports-3e4ed01146cfe2bdca465bd0e4d199341f62a0b6.tar.gz
ports-3e4ed01146cfe2bdca465bd0e4d199341f62a0b6.zip
- Remove unneeded dependency from gtk12/gtk20 [1]
- 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)
Notes
Notes: svn path=/head/; revision=211584
Diffstat (limited to 'net/wmnet')
-rw-r--r--net/wmnet/files/patch-aa13
1 files changed, 7 insertions, 6 deletions
diff --git a/net/wmnet/files/patch-aa b/net/wmnet/files/patch-aa
index c1e40dc49110..2288aca11852 100644
--- a/net/wmnet/files/patch-aa
+++ b/net/wmnet/files/patch-aa
@@ -1,5 +1,5 @@
---- Makefile.orig Fri Dec 4 02:03:58 1998
-+++ Makefile Mon Apr 12 00:05:16 1999
+--- Makefile.orig 1998-12-03 16:33:58.000000000 +0100
++++ Makefile 2008-04-11 14:58:15.000000000 +0200
@@ -2,22 +2,24 @@
# Makefile,v 1.8 1998/12/03 15:33:58 rneswold Exp
#
@@ -9,14 +9,15 @@
BINDIR=${PREFIX}/bin
-LIBDIR = -L/usr/X11R6/lib -L/usr/local/lib
-+LIBDIR = -L${X11BASE}/lib -L${LOCALBASE}/lib
++LIBDIR = -L${LOCALBASE}/lib
LIBS = -lXpm -lXext -lX11 -lkvm
OBJS = main.o if.o wmgeneral.o
- INCDIR = -I${X11BASE}/include
-
+-INCDIR = -I${X11BASE}/include
++INCDIR = -I${LOCALBASE}/include
++
+CC ?= cc
+CFLAGS ?= -O
-+
+
.c.o :
- cc -c -g -O1 -Wall ${INCDIR} $< -o $*.o
+ $(CC) -c $(CFLAGS) -g -Wall ${INCDIR} $< -o $*.o