mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
65ab34a667
Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# New ports collection makefile for: moxftp
|
|
# Version required: 2.2
|
|
# Date created: 19 December 1994
|
|
# Whom: janek
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= moxftp-2.2
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= ftp://metalab.unc.edu/pub/X11/contrib/applications/ \
|
|
ftp://ftp.inria.fr/X/contrib-R5/applications/ \
|
|
ftp://ftp.tk.mesh.ad.jp/pub/X/contrib/applications/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
REQUIRES_MOTIF= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_X_PREFIX= yes
|
|
MAN1= ${PROGRAM_NAME}.1
|
|
PLIST_SUB= PROGRAM_NAME=${PROGRAM_NAME} RESOURCE_NAME=${RESOURCE_NAME}
|
|
STRIP=
|
|
|
|
# CONFIGURE_ARGS set to :
|
|
# motif - for motif version, (not tested!!!)
|
|
# athena - for athena version,
|
|
# athena3d - for athena 3 d version, (you should have installed Xaw3d!!!)
|
|
# openlook - for open look version - (not tested!!!)
|
|
# If you use athena3d uncomment LIB_DEPENDS !!!
|
|
.if defined(HAVE_MOTIF)
|
|
CONFIGURE_ARGS= motif
|
|
PROGRAM_NAME=mftp
|
|
RESOURCE_NAME=Mftp
|
|
.else
|
|
CONFIGURE_ARGS= athena
|
|
PROGRAM_NAME=xftp
|
|
RESOURCE_NAME=Xftp
|
|
.endif
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/${PROGRAM_NAME}
|
|
@${INSTALL_MAN} ${WRKSRC}/${PROGRAM_NAME}.man ${PREFIX}/man/man1/${PROGRAM_NAME}.1
|
|
|
|
.include <bsd.port.mk>
|