mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
40 lines
969 B
Makefile
40 lines
969 B
Makefile
# New ports collection Makefile for: xrmftp
|
|
# Date created: 28 March 2000
|
|
# Whom: Matt Heckaman <matt@LUCIDA.CA>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xrmftp
|
|
PORTVERSION= 1.2.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= http://www-users.mat.uni.torun.pl/~rafmet/xrmftp/
|
|
EXTRACT_SUFX= .src.tgz
|
|
|
|
MAINTAINER= beech@FreeBSD.org
|
|
COMMENT= Graphical FTP client based on the xforms library
|
|
|
|
LIB_DEPENDS= forms.1:${PORTSDIR}/x11-toolkits/xforms
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.src
|
|
|
|
ALL_TARGET= xrmftp
|
|
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/X11
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" \
|
|
LDFLAGS="-L/usr/lib -L${LOCALBASE}/lib -lm -lX11 -lforms -lXpm"
|
|
|
|
PORTDOCS= CHANGES FIXED-BUGS README
|
|
PLIST_FILES= bin/xrmftp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xrmftp ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for file in CHANGES FIXED-BUGS README
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|