diff options
author | tg <tg@FreeBSD.org> | 1999-10-05 10:20:27 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1999-10-05 10:20:27 +0000 |
commit | 5d9ee0f981b568cf5bcf20db15de726f7aa69fef (patch) | |
tree | 558850231bc82bf335b009d3020c9167f09cc59c /x11/wdm | |
parent | 4825c385b17c534375f267963ba3424439e7c0fd (diff) | |
download | FreeBSD-ports-5d9ee0f981b568cf5bcf20db15de726f7aa69fef.zip FreeBSD-ports-5d9ee0f981b568cf5bcf20db15de726f7aa69fef.tar.gz |
Fix MASTER_SITES; merge patch from PR 13614.
PR: 14126
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'x11/wdm')
-rw-r--r-- | x11/wdm/Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/x11/wdm/Makefile b/x11/wdm/Makefile index 25bcb42..36bc042 100644 --- a/x11/wdm/Makefile +++ b/x11/wdm/Makefile @@ -7,9 +7,9 @@ DISTNAME= wdm-1.0 CATEGORIES= x11 windowmaker -MASTER_SITES= ftp://ftp.windowmaker.org/pub/contrib/srcs/utils/ \ - ftp://ftp.io.com/pub/mirror/windowmaker/contrib/srcs/utils/ \ +MASTER_SITES= ${MASTER_SITE_WINDOWMAKER} \ http://www.de.freebsd.org/de/gif/bsd/ +MASTER_SITE_SUBDIR= contrib/srcs/utils DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DAEMONPIC} MAINTAINER= ports@FreeBSD.org @@ -26,21 +26,25 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= wdm USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= X11BASE=${X11BASE} CPPFLAGS=-I${PREFIX}/include \ - CFLAGS="${CFLAGS} -DHAS_SETUSERCONTEXT" -CONFIGURE_ARGS= --with-gfx-libs="-L${PREFIX}/lib -L${LOCALBASE}/lib -lgif -lXpm -lpng -ltiff" \ - --with-gfx-incs="-I${LOCALBASE}/include" \ - --with-tiff-libs="-ljpeg" \ - --with-logdir=/var/log --with-runlockdir=/var/run \ - --with-wdmdir=${PREFIX}/lib/X11/wdm --with-Logo=Earth200x130.xpm \ - --with-defuserpath=/bin:/usr/bin:/sbin:/usr/sbin:${X11BASE}/bin:${LOCALBASE}/bin \ - --with-defsystempath=/bin:/usr/bin:/sbin:/usr/sbin:${X11BASE}/bin \ - --with-wmlist=wmaker:afterstep:ctwm:enlightenment:fvwm:fvwm2:fvwm95:olvwm:qvwm:tvtwm +CONFIGURE_ENV= CFLAGS="${CFLAGS} -DHAS_SETUSERCONTEXT" +CONFIGURE_ARGS= --with-gfx-libs="-L${LOCALBASE}/lib -lgif -lpng -ltiff -lXpm" \ + --with-gfx-incs="-I${LOCALBASE}/include" \ + --with-tiff-libs="-ljpeg" \ + --with-logdir=/var/log \ + --with-runlockdir=/var/run \ + --with-wdmdir=${PREFIX}/lib/X11/wdm \ + --with-Logo=Earth200x130.xpm \ + --with-defuserpath=/bin:/usr/bin:/sbin:/usr/sbin:${X11BASE}/bin:${LOCALBASE}/bin \ + --with-defsystempath=/bin:/usr/bin:/sbin:/usr/sbin:${X11BASE}/bin \ + --with-wmlist=wmaker:afterstep:ctwm:enlightenment:fvwm:fvwm2:fvwm95:olvwm:qvwm:tvtwm MAN1= wdm.1 wdmLogin.1 DAEMONPIC= daemon1-HQ-1280x960.jpg +post-extract: + @(cd ${WRKSRC}; ${TAR} xzf xdm-332.tar.gz) + post-install: ${INSTALL_DATA} ${_DISTDIR}/${DAEMONPIC} ${PREFIX}/lib/X11/wdm/pixmaps |