View | Details | Raw Unified | Return to bug 89525
Collapse All | Expand All

(-)Makefile (-16 / +20 lines)
Lines 16-21 Link Here
16
MAINTAINER?=	cyrille.lefevre@laposte.net
16
MAINTAINER?=	cyrille.lefevre@laposte.net
17
COMMENT?=	Donate idle cycles to the search for space aliens
17
COMMENT?=	Donate idle cycles to the search for space aliens
18
18
19
DEPRECATED=	Will stop working on 2005-12-15 (see http://setiathome.ssl.berkeley.edu/), use astro/boinc-setiathome.
20
EXPIRATION_DATE=2005-12-15
21
IGNORE=		will stop working on 2005-12-15 (see http://setiathome.ssl.berkeley.edu/), use astro/boinc-setiathome
22
19
.include <bsd.port.pre.mk>
23
.include <bsd.port.pre.mk>
20
24
21
.if ${OSVERSION} >= 500000
25
.if ${OSVERSION} >= 500000
Lines 35-41 Link Here
35
NO_CDROM=	interactive install
39
NO_CDROM=	interactive install
36
40
37
.if ${OSVERSION} < 400000
41
.if ${OSVERSION} < 400000
38
IGNORE=		"supports only FreeBSD 4.0 and above"
42
IGNORE=		supports only FreeBSD 4.0 and above
39
.endif
43
.endif
40
44
41
EXTRACT_CMD=	${CAT}
45
EXTRACT_CMD=	${CAT}
Lines 160-184 Link Here
160
post-install: install-startup-files configure-package display-message
164
post-install: install-startup-files configure-package display-message
161
165
162
install-startup-files:
166
install-startup-files:
163
.for file in ${RC_FILES}
167
.for f in ${RC_FILES}
164
.if exists(${FILESDIR}/rc.${file}.conf)
168
.if exists(${FILESDIR}/rc.${f}.conf)
165
	@${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf \
169
	@${INSTALL_DATA} ${FILESDIR}/rc.${f}.conf \
166
		${CONF_DIR}/rc.${PKGNAMEPREFIX}${file}${PKGNAMESUFFIX}.conf${SAMP_SUFX}
170
		${CONF_DIR}/rc.${PKGNAMEPREFIX}${f}${PKGNAMESUFFIX}.conf${SAMP_SUFX}
167
.if !exists(${CONF_DIR}/rc.${PKGNAMEPREFIX}${file}${PKGNAMESUFFIX}.conf)
171
.if !exists(${CONF_DIR}/rc.${PKGNAMEPREFIX}${f}${PKGNAMESUFFIX}.conf)
168
	@${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf \
172
	@${INSTALL_DATA} ${FILESDIR}/rc.${f}.conf \
169
		${CONF_DIR}/rc.${PKGNAMEPREFIX}${file}${PKGNAMESUFFIX}.conf
173
		${CONF_DIR}/rc.${PKGNAMEPREFIX}${f}${PKGNAMESUFFIX}.conf
170
.endif
174
.endif
171
.endif
175
.endif
172
.if defined(PKGNAMEPREFIX) && !empty(PKGNAMEPREFIX)
176
.if defined(PKGNAMEPREFIX) && !empty(PKGNAMEPREFIX)
173
	-@${CHMOD} -x ${RC_DIR}/*${file}*.sh 2> /dev/null
177
	-@${CHMOD} -x ${RC_DIR}/*${f}*.sh 2> /dev/null
174
.endif
178
.endif
175
.if exists(${FILESDIR}/${file}.sh)
179
.if exists(${FILESDIR}/${f}.sh)
176
	@${INSTALL_SCRIPT} ${FILESDIR}/${file}.sh \
180
	@${INSTALL_SCRIPT} ${FILESDIR}/${f}.sh \
177
		${RC_DIR}/${PKGNAMEPREFIX}${file}${PKGNAMESUFFIX}.sh
181
		${RC_DIR}/${PKGNAMEPREFIX}${f}${PKGNAMESUFFIX}.sh
178
.endif
182
.endif
179
.if exists(${FILESDIR}/${file}.bin)
183
.if exists(${FILESDIR}/${f}.bin)
180
	@${INSTALL_SCRIPT} ${FILESDIR}/${file}.bin \
184
	@${INSTALL_SCRIPT} ${FILESDIR}/${f}.bin \
181
		${LBIN_DIR}/${PKGNAMEPREFIX}${file}${PKGNAMESUFFIX}.bin
185
		${LBIN_DIR}/${PKGNAMEPREFIX}${f}${PKGNAMESUFFIX}.bin
182
.endif
186
.endif
183
.endfor
187
.endfor

Return to bug 89525