1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Use find and install

- Unpack jar files before installing (bump PORTREVISION for this)

PR:		ports/77068
Submitted by:	Gerrit Beine <tux@pinguru.net> (maintainer)
		Phil Schulz <ph.schulz@gmx.de>
Approved by:	clement (mentor)
This commit is contained in:
Sam Lawrance 2005-05-17 10:31:58 +00:00
parent ad32c567fc
commit 3b338c89d9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=135455

View File

@ -7,7 +7,7 @@
PORTNAME= EPIC
PORTVERSION= 0.3.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= java editors devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= e-p-i-c
@ -25,15 +25,33 @@ WRKSRC= ${WRKDIR}/${EPIC}
EPIC= org.epic.updatesite
ECLIPSE= ${PREFIX}/eclipse
EPICFILES= features/org.epic.feature.main_0.3.0 \
plugins/org.epic.debug_0.2.0 \
plugins/org.epic.ext.cbg.editor_0.3.0 \
plugins/org.epic.perleditor_0.1.2 \
plugins/org.epic.regexp_0.1.2
post-extract:
.for file in ${EPICFILES}
cd ${WRKSRC} \
&& ${MKDIR} ${file} \
&& ${UNZIP_CMD} ${file}.jar -d ${file}
.endfor
do-install:
@${CP} -r ${WRKSRC}/features/*.jar ${ECLIPSE}/features
@${CP} -r ${WRKSRC}/plugins/*.jar ${ECLIPSE}/plugins
.for file in ${EPICFILES}
cd ${WRKSRC} \
&& ${MKDIR} ${ECLIPSE}/${file} \
&& ${FIND} ${file} -type d -exec ${MKDIR} ${ECLIPSE}/{} \; \
&& ${FIND} ${file} -type f -exec ${INSTALL_DATA} {} ${ECLIPSE}/{} \;
.endfor
post-install:
@${FIND} -s ${WRKSRC}/features -name "*.jar" \
| ${SED} -ne 's,^${WRKSRC},${ECLIPSE:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
@${FIND} -s ${WRKSRC}/plugins -name "*.jar" \
.for file in ${EPICFILES}
@${FIND} ${WRKSRC}/${file} -type f \
| ${SED} -ne 's,^${WRKSRC},${ECLIPSE:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
@${FIND} -d ${WRKSRC}/${file} -type d \
| ${SED} -ne 's,^${WRKSRC},@dirrm ${ECLIPSE:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
.endfor
.include <bsd.port.mk>