Lines 6-38
Link Here
|
6 |
# |
6 |
# |
7 |
|
7 |
|
8 |
PORTNAME= HVSC-Update |
8 |
PORTNAME= HVSC-Update |
9 |
PORTVERSION= 2.8.4 |
9 |
PORTVERSION= 2.8.5 |
10 |
CATEGORIES= audio emulators |
10 |
CATEGORIES= audio emulators |
11 |
MASTER_SITES= http://www.hvsc.c64.org/Downloads/ \ |
11 |
MASTER_SITES= http://www.hvsc.c64.org/download/files/tools/ |
12 |
ftp://ftp.nuug.no/pub/anders/distfiles/ |
|
|
13 |
DISTNAME= ${PORTNAME:S/-/_/}_Tool_source_${PORTVERSION:S/.//g} |
12 |
DISTNAME= ${PORTNAME:S/-/_/}_Tool_source_${PORTVERSION:S/.//g} |
14 |
EXTRACT_SUFX= .tgz |
|
|
15 |
|
13 |
|
16 |
MAINTAINER= ports@FreeBSD.org |
14 |
MAINTAINER= ports@FreeBSD.org |
17 |
COMMENT= Update program for the HVSC C= 64 SID tune collection |
15 |
COMMENT= Update program for the HVSC C= 64 SID tune collection |
18 |
|
16 |
|
19 |
BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake |
17 |
BUILDD_EPENDS= makedepend:${PORTSDIR}/devel/makedepend |
20 |
|
18 |
|
21 |
WRKSRC= ${WRKDIR}/${PORTNAME:S/-/_/}_Tool_${PORTVERSION:S/.//g} |
19 |
WRKSRC= ${WRKDIR}/${PORTNAME:S/-/_/}_Tool_${PORTVERSION:S/.//g} |
22 |
|
20 |
|
23 |
USE_GMAKE= yes |
21 |
USE_GMAKE= yes |
24 |
GNU_CONFIGURE= yes |
22 |
GNU_CONFIGURE= yes |
|
|
23 |
MAKE_JOBS_SAFE= yes |
25 |
|
24 |
|
26 |
DOCS= HVSC_Update.txt SID_file_format.txt |
25 |
PORTDOCS= HVSC_Update.txt SID_file_format.txt |
|
|
26 |
PLIST_FILES= bin/${PORTNAME} |
27 |
|
27 |
|
28 |
.include <bsd.port.pre.mk> |
28 |
.include <bsd.port.pre.mk> |
29 |
|
29 |
|
30 |
do-install: |
30 |
do-install: |
31 |
${INSTALL_PROGRAM} ${WRKSRC}/src/Update ${PREFIX}/bin/HVSC-Update |
31 |
${INSTALL_PROGRAM} ${WRKSRC}/src/Update ${PREFIX}/bin/${PORTNAME} |
32 |
.if !defined(NOPORTDOCS) |
32 |
.if !defined(NOPORTDOCS) |
33 |
@${INSTALL} -d -m 0755 ${DOCSDIR} |
33 |
@${MKDIR} ${DOCSDIR} |
34 |
.for f in ${DOCS} |
34 |
.for file in ${PORTDOCS} |
35 |
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ |
35 |
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} |
36 |
.endfor |
36 |
.endfor |
37 |
.endif |
37 |
.endif |
38 |
|
38 |
|