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

(-)ssid/Makefile (+36 lines)
Line 0 Link Here
1
# Created by: Radim Kolar
2
# $FreeBSD$
3
4
PORTNAME=	ssid
5
PORTVERSION=	0.97
6
CATEGORIES=	textproc java
7
MASTER_SITES=	https://gitlab.com/netmag/${PORTNAME}/-/jobs/272542204/artifacts/raw/
8
DISTNAME=	${PORTNAME}${PORTVERSION:S/.//g}
9
10
MAINTAINER=	hsn@sendmail.cz
11
COMMENT=	Offline mod_include directive processor with plugins API
12
13
LICENSE=	GPLv2
14
15
USES=		zip
16
USE_JAVA=	yes
17
18
NO_BUILD=	yes
19
NO_ARCH=	yes
20
NO_WRKSUBDIR=	yes
21
SUB_FILES=	ssid.sh
22
23
OPTIONS_DEFINE=	EXAMPLES
24
EXAMPLES_DESC=	Install example configuration
25
26
.include <bsd.port.options.mk>
27
28
do-install:
29
	${INSTALL_SCRIPT} ${WRKDIR}/ssid.sh ${STAGEDIR}${PREFIX}/bin/ssid
30
	${INSTALL_DATA} ${WRKSRC}/ssid.jar ${STAGEDIR}${PREFIX}/share/java/classes/ssid.jar
31
32
do-install-EXAMPLES-on:
33
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
34
	${INSTALL_DATA} ${WRKSRC}/ssid.cnf ${STAGEDIR}${EXAMPLESDIR}
35
36
.include <bsd.port.mk>
(-)ssid/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1565990724
2
SHA256 (ssid097.zip) = be58e5f6ab90e10f3f646638279b76c739aacd0e053dfb2470509854b8a15142
3
SIZE (ssid097.zip) = 60560
(-)ssid/files/ssid.sh.in (+5 lines)
Line 0 Link Here
1
#!/bin/sh
2
#
3
# $FreeBSD$
4
5
"%%LOCALBASE%%/bin/java" -jar "%%PREFIX%%/share/java/classes/ssid.jar" $*
(-)ssid/pkg-descr (+5 lines)
Line 0 Link Here
1
Server Side Includes Daemon is static site generator.
2
Language used is Apache HTTPD mod_include directives.
3
It can generate .html files from .shtml sources.
4
5
WWW: https://gitlab.com/netmag/ssid/
(-)ssid/pkg-plist (+3 lines)
Line 0 Link Here
1
bin/ssid
2
share/java/classes/ssid.jar
3
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ssid.cnf

Return to bug 239931