diff options
author | asami <asami@FreeBSD.org> | 1995-02-28 05:06:26 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-02-28 05:06:26 +0000 |
commit | 3ffc698eeb3b8d0a2b1bf2fab9c235be7ff3f4d1 (patch) | |
tree | bec6ad54940ba5d899fbbddfd9cb5230ea10a26a /graphics | |
parent | bb1dd0889abcc299c62ac7eaa2ef104e48cfa092 (diff) | |
download | FreeBSD-ports-3ffc698eeb3b8d0a2b1bf2fab9c235be7ff3f4d1.zip FreeBSD-ports-3ffc698eeb3b8d0a2b1bf2fab9c235be7ff3f4d1.tar.gz |
Grab source from mirror site (crl.dec.com)'s contrib/applications instead
of R6untarred of ftp.x.org, these are more recent (although only comments
have changed so far).
Removed the fetch: target (which I assume was there so that it will always
use ftp.freebsd.org even if MASTER_SITE_OVERRIDE wasn't set).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/pixmap/Makefile | 31 |
1 files changed, 3 insertions, 28 deletions
diff --git a/graphics/pixmap/Makefile b/graphics/pixmap/Makefile index 4824271..d7cf3bf 100644 --- a/graphics/pixmap/Makefile +++ b/graphics/pixmap/Makefile @@ -7,34 +7,9 @@ # USE_IMAKE= yes -DISTNAME= pixmap -PKGNAME= pixmap-2.6 +DISTNAME= pixmap2.6 LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm -MASTER_SITES= ftp://ftp.x.org/pub/R6untarred/contrib/programs/ +MASTER_SITES= ftp://crl.dec.com/pub/X11/contrib/applications/pixmap/ +WRKSRC= ${WRKDIR}/pixmap -.if !defined(MASTER_SITE_OVERRIDE) - -fetch: pre-fetch - @if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi - @(cd ${DISTDIR}; \ - for file in ${DISTFILES}; do \ - if [ ! -f $$file -a ! -f `basename $$file` ]; then \ - echo ">> $$file doesn't seem to exist on this system."; \ - echo ">> Attempting to fetch it from a master site."; \ - for site in ${MASTER_SITES}; do \ - if ${NCFTP} -c ${NCFTPFLAGS} $${site}$${file} >$$file; then \ - break; \ - fi \ - done; \ - if [ ! -f $$file -a ! -f `basename $$file` ]; then \ - echo ">> Couldn't fetch it - please try to retreive this";\ - echo ">> port manually into ${DISTDIR} and try again."; \ - exit 1; \ - fi; \ - fi \ - done) -.endif - -pre-patch: - @(cd ${WRKDIR}; mv pub/R6untarred/contrib/programs/pixmap .) .include <bsd.port.mk> |