mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
23ac2035b9
I've got a brand new hosting, so change my email to the new one. Also, now I can mirror some distfiles, so update MASTER_SITES for some ports. PR: ports/107038 Submitted by: Dmitry Marakasov <amdmi3@mail.ru>
39 lines
785 B
Makefile
39 lines
785 B
Makefile
# New ports collection makefile for: qpxtool
|
|
# Date created: 23 Mar 2006
|
|
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qpxtool
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= amdmi3@amdmi3.ru
|
|
COMMENT= A GUI for testing CD/DVD quality and transfer rate
|
|
|
|
USE_BZIP2= yes
|
|
USE_QT_VER= 3
|
|
|
|
USE_SCONS= yes
|
|
SCONS_BUILDENV= QTDIR="${QT_PREFIX}" TMPDIR="${TMPDIR}" ${SCONS_ENV}
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= README ChangeLog
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/* ${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/lib/lib/* ${PREFIX}/lib/
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|