mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
41 lines
1018 B
Makefile
41 lines
1018 B
Makefile
# New ports collection makefile for: xgammon
|
|
# Date created: 02 January 1997
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xgammon
|
|
PORTVERSION= 0.98
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.redhat.com/pub/redhat/current/SRPMS/SRPMS/ \
|
|
ftp://ftp.mpi-sb.mpg.de/pub/linux/mirror/ftp.redhat.com/redhat/current/SRPMS/SRPMS/ \
|
|
ftp://sunsite.Informatik.RWTH-Aachen.DE/pub/comp/Linux/redhat/current/SRPMS/SRPMS/
|
|
EXTRACT_SUFX= -15.src.rpm
|
|
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= tg@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/misc/rpm2cpio
|
|
|
|
NO_WRKSUBDIR= yes
|
|
USE_IMAKE= yes
|
|
MAN6= xgammon.6
|
|
|
|
PATCH_FILES= ${DISTNAME}-dirent.patch
|
|
|
|
do-extract:
|
|
@${RM} -rf ${WRKDIR}
|
|
@${MKDIR} ${WRKDIR}
|
|
@rpm2cpio ${_DISTDIR}${DISTFILES} | (cd ${WRKDIR}; cpio -i)
|
|
@tar -xzf ${WRKDIR}/${DISTNAME}.tar.gz -C ${WRKDIR}
|
|
|
|
pre-patch:
|
|
@${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}"
|
|
@for file in ${PATCH_FILES}; do \
|
|
${PATCH} ${PATCH_DIST_ARGS} < ${WRKDIR}/$$file; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|