mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-13 23:36:08 +00:00
5114e2637e
bsd.port.mk rev. 1.304 for details on the change. The fix here is one of the following. (1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining EXTRACT_* commands. (2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously calling the "tar" command (i.e., arguments like "-xzf" are spelled out). (3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS}, add ${EXTRACT_AFTER_ARGS} to the command line as well. (4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS is set, define the other two too.
33 lines
739 B
Makefile
33 lines
739 B
Makefile
# New ports collection makefile for: qkcc
|
|
# Version required: 1.0
|
|
# Date created: 03 May 1996
|
|
# Whom: Masafumi NAKANE <max@FreeBSD.ORG>
|
|
#
|
|
# $Id: Makefile,v 1.9 1998/10/10 05:39:24 steve Exp $
|
|
#
|
|
|
|
DISTNAME= qkcc100
|
|
PKGNAME= ja-qkc-1.0
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= ftp://ftp.lab.kdd.co.jp/Usenet/fj.sources/1995/oct/ \
|
|
ftp://ftp.iis.u-tokyo.ac.jp/pub1/unix/Kanji/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= max@FreeBSD.ORG
|
|
|
|
BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip
|
|
|
|
EXTRACT_CMD= unzip
|
|
EXTRACT_BEFORE_ARGS= -q
|
|
EXTRACT_AFTER_ARGS= # empty
|
|
NO_WRKSUBDIR= yes
|
|
ALL_TARGET=
|
|
MAN1= qkc.1
|
|
MANLANG= ja
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/qkc ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/qkc.1 ${PREFIX}/man/ja/man1
|
|
|
|
.include <bsd.port.mk>
|