1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/misc/tet/Makefile
Eitan Adler fd37d8821f Cleanup unmaintained ports in the misc category:
- Trim Header
	- Convert to OptionsNG
	- Prefer DISTNAME to DISTFILES
	- Reorder variables
	- Fix comments (don't include leading article)
	- @unexec rm must not cause failure
	- Tabs, not spaces
	- Single space for WWW
	- Pet portlint
	- etc.

In a few cases the option DOCS was used to control installation into EXAMPLEDIR.
I opted to keep the existing logic of the port in these cases.

Reviewed by:	koobs, ashish
2013-03-25 04:30:31 +00:00

82 lines
2.4 KiB
Makefile

# Created by: jkoshy
# $FreeBSD$
PORTNAME= tet
PORTVERSION= 3.7
CATEGORIES= misc
MASTER_SITES= ftp://ftp.rdg.opengroup.org/pub/TET/TET3/ \
http://tetworks.opengroup.org/tet/ \
http://tetworks.opengroup.org/documents/3.7/:docs \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= jkoshy
DISTFILES= ${PORTNAME}${PORTVERSION}-unsup.src.tgz
DIST_SUBDIR= tet/${PORTVERSION}
EXTRACT_ONLY= ${PORTNAME}${PORTVERSION}-unsup.src.tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Test execution framework from the Open Group
NO_PACKAGE= $${TET_ROOT} needs to be set at compile time.
HAS_CONFIGURE= yes
CONFIGURE_ARGS= -t ${TET_CONFIG_TARGET}
PLIST= ${WRKDIR}/PLIST
TET_CONFIG_TARGET?= inet # options are `lite', `xti' and `inet'
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
TET_DOCS= 37_all_pdf.zip
DISTFILES+= ${TET_DOCS}:docs
BUILD_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
.endif
# Set @cwd in the package list to ${TET_ROOT}
PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} \
-p ${TET_ROOT} -o ${CATEGORIES}/${PORTNAME}
do-extract:
.if !defined(TET_ROOT)
@${ECHO_MSG}
@${ECHO_MSG} "ERROR: The environment variable \"TET_ROOT\" is not set."
@${ECHO_MSG} "You must set it to the directory where you would like "
@${ECHO_MSG} "this port to reside before attempting extraction."
@${ECHO_MSG}
@${FALSE}
.endif
@${RM} -rf ${WRKDIR}
@${MKDIR} ${WRKDIR}
${MKDIR} ${TET_ROOT}
${LN} -s ${TET_ROOT} ${WRKDIR}/${PORTNAME}-${PORTVERSION}
cd ${TET_ROOT} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
${DISTDIR}/${DIST_SUBDIR}/${EXTRACT_ONLY} ${EXTRACT_AFTER_ARGS}
# fix permissions
pre-configure:
${CHMOD} +x ${TET_ROOT}/configure
# build TET inside ${TET_ROOT}, and create a default packing list so that
# pkg_delete tet-${PORTVERSION} will work.
do-build:
.if !defined(TET_ROOT)
@${ECHO_MSG} ERROR: Environment variable \"TET_ROOT\" must be set.
@${FALSE}
.endif
cd ${TET_ROOT}/src && ${MAKE} ${ALL_TARGET}
cd ${TET_ROOT}/src && ${MAKE} ${INSTALL_TARGET}
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${TET_ROOT}/doc
${UNZIP_CMD} -d ${TET_ROOT}/doc ${DISTDIR}/${DIST_SUBDIR}/${TET_DOCS}
.endif
cd ${TET_ROOT} && ${FIND} . ! -type d | \
${SED} -e 's,^\./,,' >> ${PLIST}
cd ${TET_ROOT} && ${FIND} -d . -type d -print | ${SORT} -ru | \
${SED} -e 's,^\./,,' -e '/^\.$$/d' -e 's/^/@dirrm /' \
>> ${PLIST}
${ECHO} "@unexec ${RMDIR} ${TET_ROOT}" >> ${PLIST}
do-install:
@${TRUE}
.include <bsd.port.mk>