mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
000e8742eb
1. Make MASTER_SITES entries contain a trailing /. Garrett says that assuming a '/' seperator between entries in MASTER_SITES and entries in DISTFILES is a dangerous assumption. This will also be taken out of bsd.port.mk. 2. General clean-up. Some of these Makefiles were a little grim. Make sure they're all in sync with the sometimes rapidly changing bsd.port.mk! :) 3. Some small configuration tweaks to keep them compiling under the most recent 2.0 - some things seem to have broken along our road to release.
60 lines
1.9 KiB
Makefile
60 lines
1.9 KiB
Makefile
# New ports collection makefile for: dgd
|
|
# Version required: 1.0.8
|
|
# Date created: 23 August 1994
|
|
# Whom: adam
|
|
#
|
|
|
|
DISTNAME= dgd-1.0.8
|
|
DISTFILES= ${DISTNAME}.tar.gz ${DISTNAME}/1.0.8-1.0.8.1.gz \
|
|
${DISTNAME}/1.0.8.1-1.0.8.2.gz ${DISTNAME}/1.0.8.2-1.0.8.3.gz
|
|
PATCHFILES= 1.0.8-1.0.8.1.gz 1.0.8.1-1.0.8.2.gz 1.0.8.2-1.0.8.3.gz
|
|
PATCHSITE= epsilon.me.chalmers.se
|
|
NCFTPFLAGS=
|
|
PATCH_COOKIE= ${.CURDIR}/work/.patch_done
|
|
PATCHLIST= ${.CURDIR}/work/.patchlist
|
|
PATCHLEVEL= `tail -1 ${PATCHLIST} | sed 's/^.*\.\(.*\)\.gz$$/\1/'`
|
|
WRKSRC= ${WRKDIR}/dgd/src
|
|
PKG_ARGS= -v -c ${PKGDIR}/COMMENT -d ${PKGDIR}/DESCR -f ${PKGDIR}/PLIST \
|
|
-r ${PKGDIR}/REQ
|
|
|
|
pre-fetch:
|
|
@if [ ! -d ${DISTDIR}/${DISTNAME} ]; then mkdir -p ${DISTDIR}/${DISTNAME}; fi
|
|
@if [ ! -f ${DISTDIR}/${DISTNAME}.tar.gz ]; then \
|
|
echo ">> Fetching distribution file from remote site..."; \
|
|
${NCFTP} ${NCFTPFLAGS} ${PATCHSITE}:${DISTNAME}.tar.gz \
|
|
&& mv ${DISTNAME}.tar.gz ${DISTDIR}; \
|
|
fi
|
|
@for file in ${PATCHFILES}; do \
|
|
if [ ! -f ${DISTDIR}/${DISTNAME}/$$file ]; then \
|
|
echo ">> Fetching patch $$file from remote site..."; \
|
|
${NCFTP} ${NCFTPFLAGS} ${PATCHSITE}:patches/$$file \
|
|
&& mv patches/$$file ${DISTDIR}/${DISTNAME}; \
|
|
fi \
|
|
done
|
|
|
|
# Need to determine whether all author-supplied patches are correctly applied
|
|
### not yet implemented
|
|
|
|
pre-configure: extract ${PATCH_COOKIE}
|
|
@find -X ${WRKDIR}/dgd -name '*.orig' -print | xargs rm -f
|
|
|
|
${PATCHLIST}:
|
|
@cd ${DISTDIR}/${DISTNAME}; \
|
|
ls *.[0-9].gz *.[0-9][0-9].gz \
|
|
2>/dev/null >${PATCHLIST}
|
|
|
|
${PATCH_COOKIE}: ${PATCHLIST}
|
|
@if [ -s ${PATCHLIST} ]; then \
|
|
echo "===> Updating to ${DISTNAME}.${PATCHLEVEL}"; \
|
|
cd ${DISTDIR}/${DISTNAME}; \
|
|
gzcat `cat ${PATCHLIST}` | patch -d ${WRKDIR} --quiet -E -p0; \
|
|
fi
|
|
@touch -f ${PATCH_COOKIE}
|
|
|
|
install: all
|
|
@chown -R mud.mud ${WRKDIR}/dgd
|
|
@tar -C ${WRKDIR} -cf - `grep '^dgd/' pkg/PLIST` \
|
|
| tar -C /usr/local -xpf -
|
|
|
|
.include <bsd.port.mk>
|