36 lines
1.1 KiB
Makefile
Raw Normal View History

2014-07-17 12:38:34 +00:00
# $OpenBSD: Makefile,v 1.13 2014/07/17 12:38:34 ajacoutot Exp $
COMMENT= SubVersion plug-in for Eclipse IDE
2007-05-18 02:27:51 +00:00
V= 1.2.1
DISTNAME= site-${V}
PKGNAME= eclipse-plugin-subclipse-${V}
2013-02-04 13:11:43 +00:00
CATEGORIES+= java
REVISION = 1
MAINTAINER= Ian Darwin <ian@openbsd.org>
# SubClipse itself is CPL 1.0, but
# JavaSVN, which it uses, has a bizarro hybrid: BSD but "no redist w/o source code"
PERMIT_PACKAGE_CDROM= Stupid license
PERMIT_PACKAGE_FTP= Yes
HOMEPAGE= http://subclipse.tigris.org/
2007-05-18 02:27:51 +00:00
MASTER_SITES= http://subclipse.tigris.org/files/documents/906/37653/
# Try to use in-tree lynx since tigris' brain-dead web site insists
# on doing a redirection loop if you don't handle cookes, which default
# FETCH_CMD does not.
FETCH_CMD= lynx -accept_all_cookies -source >${DISTDIR}/$$f
2014-07-17 12:38:34 +00:00
BUILD_DEPENDS+= www/lynx
# Distfile is an Update Site download, unpack features jar manually,
# still tar plugins over into ${PREFIX}
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/eclipse
cd ${WRKDIST} && tar cfL - features plugins | \
(cd ${PREFIX}/eclipse && tar -xf -)
.include <bsd.port.mk>