blob: f5f4b48bd4b4f344446154b4f8b09415944f889c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# New ports collection makefile for: portscout
# Date created: 2006-05-15
# Whom: Shaun Amott <shaun@inerd.com>
#
# $FreeBSD$
#
PORTNAME= portscout
PORTVERSION= 0.7.4
PORTREVISION= 1
CATEGORIES= ports-mgmt
MASTER_SITES= http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/ \
http://www.atarininja.org/~wxs/distfiles/ \
http://www.inerd.com/software/${PORTNAME}/
MAINTAINER= shaun@FreeBSD.org
COMMENT= A tool to scan for new versions of FreeBSD ports
NO_BUILD= yes
USE_PERL5= yes
PORTDOCS= README
PATCHFILES= portscout-0.7.4-fixsql.diff
PATCH_SITES= ${MASTER_SITES}
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \
${SITE_PERL}/Proc/Queue.pm:${PORTSDIR}/devel/p5-Proc-Queue \
${SITE_PERL}/Net/FTP.pm:${PORTSDIR}/net/p5-Net \
${SITE_PERL}/MIME/Lite.pm:${PORTSDIR}/mail/p5-MIME-Lite \
${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww
.if defined(WITH_MYSQL) || defined(WITH_SQLITE3)
WITHOUT_PGSQL= true
BROKEN= MySQL/SQLite3 is not supported yet; portscout will not work with it
.endif
.if !defined(WITHOUT_PGSQL)
USE_PGSQL= yes
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
.elif defined(WITH_MYSQL)
USE_MYSQL= yes
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER:S/323//}
EXTRA_PATCHES+= ${WRKSRC}/patches/mysql.diff
.elif defined(WITH_SQLITE3)
USE_SQLITE= 3
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite
EXTRA_PATCHES+= ${WRKSRC}/patches/sqlite3.diff
.endif
pre-everything::
.if defined(WITH_MYSQL) || defined(WITH_SQLITE3)
@${ECHO_MSG} "+-------------------------------------------------------------+"
@${ECHO_MSG} "| Warning! portscout has only been tested with PostgreSQL. |"
@${ECHO_MSG} "| The author makes no guarantee that anything else will work, |"
@${ECHO_MSG} "| but always welcomes success/bug reports, and/or patches. |"
@${ECHO_MSG} "+-------------------------------------------------------------+"
.endif
post-patch:
.if defined(WITH_MYSQL)
@${REINPLACE_CMD} 's/DBI:Pg/DBI:mysql/g' ${WRKSRC}/portscout.conf
.elif defined(WITH_SQLITE3)
@${REINPLACE_CMD} 's/DBI:Pg/DBI:SQLite/g' ${WRKSRC}/portscout.conf
.endif
@${REINPLACE_CMD} -e "s#^\(templates .*\)/etc#\1/share#" \
-e "s#^prefix\( *= *\).*#prefix\1${PREFIX}#" \
${WRKSRC}/portscout.conf
@${REINPLACE_CMD} -e "s#^\(.*PREFIX.*=> *\)'.*'#\1'${PREFIX}'#" \
${WRKSRC}/portscout.pl
@${REINPLACE_CMD} -e "s#portscout\.pl#portscout#" \
${WRKSRC}/README
do-install:
@${MKDIR} ${SITE_PERL}/Portscout
${INSTALL_SCRIPT} ${WRKSRC}/portscout.pl ${PREFIX}/bin/portscout
${INSTALL_SCRIPT} ${WRKSRC}/Portscout.pm ${SITE_PERL}/Portscout.pm
${INSTALL_SCRIPT} ${WRKSRC}/Portscout/Template.pm ${SITE_PERL}/Portscout
@${MKDIR} ${DATADIR}/templates
cd ${WRKSRC}/templates \
&& ${INSTALL_DATA} * ${DATADIR}/templates
@${MKDIR} ${DATADIR}/sql
cd ${WRKSRC}/sql && ${INSTALL_DATA} *.sql ${DATADIR}/sql
${INSTALL_DATA} ${WRKSRC}/portscout.conf ${PREFIX}/etc/portscout.conf.sample
post-install:
@if [ ! -f ${PREFIX}/etc/portscout.conf ]; then \
${CP} -p ${PREFIX}/etc/portscout.conf.sample ${PREFIX}/etc/portscout.conf; \
fi
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|