head	1.4;
access;
symbols
	RELEASE_8_3_0:1.3
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.2
	RELEASE_6_3_0:1.2
	PRE_XORG_7:1.2
	RELEASE_4_EOL:1.2
	RELEASE_6_2_0:1.2
	RELEASE_6_1_0:1.2
	RELEASE_5_5_0:1.2
	RELEASE_6_0_0:1.2
	RELEASE_5_4_0:1.2
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1;
locks; strict;
comment	@# @;


1.4
date	2012.06.24.21.53.36;	author dougb;	state Exp;
branches;
next	1.3;

1.3
date	2008.04.19.17.48.45;	author miwi;	state Exp;
branches;
next	1.2;

1.2
date	2005.01.26.05.40.49;	author kevlo;	state Exp;
branches;
next	1.1;

1.1
date	2004.01.27.15.58.52;	author krion;	state Exp;
branches;
next	;


desc
@@


1.4
log
@s/X11BASE/LOCALBASE/, or equivalent.

The X11BASE variable is long gone, however these ports were not updated.
@
text
@--- Makefile.orig	Sun Feb  9 05:04:20 2003
+++ Makefile	Tue Jan 27 16:34:31 2004
@@@@ -46,15 +46,17 @@@@
 # To specify a different prefix, you can override this on the command line
 #	make PREFIX=/opt/dockapps install
-PREFIX=		/usr/local
+X11BASE?=	${LOCALBASE}
+PREFIX?=	${LOCALBASE}
 
 INSTALLDIR=	install -d -m 755
-INSTALLBIN=	install -m 555
-INSTALLMAN=	install -m 444
-CC=		gcc
-CFLAGS=		-Wall -W -I/usr/X11R6/include -O
+INSTALLBIN=	$(INSTALL_PROGRAM)
+INSTALLMAN=	$(INSTALL_MAN)
+CC?=		gcc
+CFLAGS?=	-Wall -W
+CFLAGS+=	-I${LOCALBASE}/include
 # The following line is what I use during development
 #CFLAGS:=	$(CFLAGS) -Werror -g 
-LDFLAGS=	-L/usr/X11R6/lib -lXpm -lXext -lX11 -lm -lcurl
+LDFLAGS+=	-L${LOCALBASE}/lib -lXpm -lXext -lX11 -lm -lcurl
 DOCS=		wmget.1
 
 VERSION:=	$(shell grep '\#define WMGET_VERSION ' wmget.h \
@@@@ -99,5 +101,5 @@@@
 dockapplib:
-		make -C $(DALIBDIR)
+		${MAKE} -C $(DALIBDIR)
 
 
 
@@@@ -121,4 +123,4 @@@@
-		make -C dockapp clean
+		${MAKE} -C dockapp clean
 
 docclean:
 		rm -f $(DOCS)
@


1.3
log
@- 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)
@
text
@d7 1
a7 1
+X11BASE?=	/usr/X11R6
@


1.2
log
@Update to 0.6.0

PR: ports/76346
Submitted by: MAINTAINER
@
text
@d8 1
a8 1
+PREFIX?=	${X11BASE}
d19 1
a19 1
+CFLAGS+=	-I${X11BASE}/include -I${LOCALBASE}/include
d23 1
a23 1
+LDFLAGS+=	-L${X11BASE}/lib -L${LOCALBASE}/lib -lXpm -lXext -lX11 -lm -lcurl
@


1.1
log
@Add wmget 0.5.0,

wmget is a dock app for the GNU Window Maker window manager
which makes it more convenient to perform long downloads in the
background.

PR:		ports/61736
Submitted by:	Ulrich Spoerlein <q@@uni.de>
@
text
@d3 1
a3 2
@@@@ -46,16 +46,18 @@@@
 
d14 1
a14 1
-CFLAGS=		-ansi -Wall -W -I/usr/X11R6/include -D_GNU_SOURCE
d18 2
a19 2
+CFLAGS?=	-ansi -Wall -W
+CFLAGS+=	-I${X11BASE}/include -I${LOCALBASE}/include -D_GNU_SOURCE
d21 1
a21 1
 #CFLAGS:=	$(CFLAGS) -Werror -g
d27 1
a27 3
@@@@ -107,7 +109,7 @@@@
 ##### LIBRARY ##########################################################
 
d34 1
a34 4
@@@@ -130,7 +132,7 @@@@
 			wmget.html
 		sed -e '/^# DO NOT/q' < Makefile > Makefile.clean \
 		&& mv -f Makefile.clean Makefile
@

