mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
24b7d817bd
PR: ports/50342 Submitted by: Sergei Kolobov <sergei@kolobov.com>
45 lines
947 B
Makefile
45 lines
947 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: UPS
|
|
# Date created: Mon Feb 03, 1997
|
|
# Whom: David O'Brien (obrien@FreeBSD.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ups
|
|
PORTVERSION= 3.38.b1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ups-3.38-beta1
|
|
|
|
MAINTAINER= sergei@kolobov.com
|
|
COMMENT= X based source level debugger for C, C++, and Fortran
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= ups
|
|
|
|
MAN1= ups.1
|
|
DOCS= CHANGES FAQ README
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != i386 || ${OSVERSION} > 500000
|
|
BROKEN= "compiles only under -STABLE on i386"
|
|
# Avoid building packages on bento for unsupported platforms
|
|
IGNORE= ${BROKEN}
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
${INSTALL_DATA} ${WRKSRC}/Ups ${X11BASE}/lib/X11/app-defaults
|
|
|
|
.include <bsd.port.post.mk>
|