9faec07913
* Set PORTREVISION to 1 * Including patch file in ${FILESDIR} instead of downloading it * Emptied MASTER_SITES since the distfile needs to be obtained from Karmira. This should avoid that I get complaints from fenners script ;) * Allowed scripting of the ${JAVA_HOME} variable, so the installer can choose a JDK him/herself when installing. The bugseeker script is changed accordingly * Now installing the bugseeker shell script as ${PREFIX}/bin/bugseeker with read/execute permissions for anyone * Made IGNORE message more verbose * Made install process more verbose * Added NO_CDROM and RESTRICTED to Makefile * Changed pkg-plist file to use substitutions instead of a fixed path PR: 28323 Submitted by: Ernst de Haan <ernst@jollem.com>
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
# New ports collection makefile for: bugseeker
|
|
# Date created: 22 December 2000
|
|
# Whom: Ernst de Haan <ernst@jollem.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bugseeker
|
|
PORTVERSION= 1.0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= java
|
|
MASTER_SITES= #
|
|
DISTNAME= bugseeker2ee-1_0_2
|
|
|
|
MAINTAINER= ernst@jollem.com
|
|
|
|
RUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/linux-jdk13
|
|
|
|
NO_CDROM= "License doesn\'t allow redistribution"
|
|
RESTRICTED= "Redistribution of repackaged binaries not permitted"
|
|
NO_BUILD= YES
|
|
|
|
WRKSRC= ${WRKDIR}/bugseeker2
|
|
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
|
|
TARGET_DIR= ${PREFIX}/${PKGBASE}${PORTVERSION}
|
|
JAVA_HOME?= ${LOCALBASE}/linux-jdk1.3.1
|
|
DOWNLOAD_URL?= http://www.karmira.com/store/index.html
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
IGNORE=You must manually obtain the ${DISTNAME}${EXTRACT_SUFX} file from Karmira, at ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
|
|
.endif
|
|
|
|
do-install:
|
|
${CAT} ${WRKSRC}/bin/bugseeker2.sh \
|
|
| ${SED} "/%%TARGET_DIR%%/s//${TARGET_DIR:S/\//\\\//g}/" \
|
|
| ${SED} "/%%JAVA_HOME%%/s//${JAVA_HOME:S/\//\\\//g}/" \
|
|
> ${WRKSRC}/bin/bugseeker
|
|
${CHMOD} a+xr ${WRKSRC}/bin/bugseeker
|
|
${MKDIR} ${TARGET_DIR}
|
|
${CP} ${WRKSRC}/changes.txt ${TARGET_DIR}/
|
|
${CP} ${WRKSRC}/license.txt ${TARGET_DIR}/
|
|
${CP} ${WRKSRC}/readme.txt ${TARGET_DIR}/
|
|
${CP} ${WRKSRC}/bin/bugseeker ${PREFIX}/bin
|
|
${MKDIR} ${TARGET_DIR}/lib
|
|
${CP} -r ${WRKSRC}/lib/* ${TARGET_DIR}/lib/
|
|
${MKDIR} ${TARGET_DIR}/manual
|
|
${CP} -r ${WRKSRC}/manual/* ${TARGET_DIR}/manual/
|
|
|
|
.include <bsd.port.post.mk>
|