mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
35 lines
860 B
Makefile
35 lines
860 B
Makefile
# New ports collection makefile for: pauker
|
|
# Date created: 11 November 2007
|
|
# Whom: Alex Stangl <alex@stangl.us>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pauker
|
|
DISTVERSION= 1.8RC2
|
|
PORTREVISION= 1
|
|
CATEGORIES= misc java
|
|
MASTER_SITES= SF
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= alex@stangl.us
|
|
COMMENT= Java-based flashcard learning using the Leitner system
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.4+
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar bin/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${DISTDIR}/${DISTNAME}.jar ${JAVAJARDIR}/${PORTNAME}.jar
|
|
@${SED} -e "s:%%LOCALBASE%%:${LOCALBASE}:" \
|
|
-e "s:%%JAVAJARDIR%%:${JAVAJARDIR}:" \
|
|
-e "s:%%PORTNAME%%:${PORTNAME}:" \
|
|
${FILESDIR}/pauker.sh > ${PREFIX}/bin/${PORTNAME}
|
|
@${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/bin/${PORTNAME}
|
|
@${CHMOD} a+rx ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|