mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
04dd7ad04b
GUI version is now GNOMEified. PR: 14940 Submitted by: Maintainer
42 lines
958 B
Makefile
42 lines
958 B
Makefile
# New ports collection makefile for: ipsc
|
|
# Version required: 0.4.0
|
|
# Date created: 31 October 1999
|
|
# Whom: Jeremy Shaffner <jeremy@external.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= ipsc-0.4.0-src
|
|
PKGNAME= ipsc-0.4.0
|
|
CATEGORIES= sysutils gnome x11
|
|
MASTER_SITES= http://www.interloper.net/~dan/software/dist/ipsc/
|
|
|
|
MAINTAINER= jeremy@external.org
|
|
|
|
BUILD_DEPENDS= ${WRKDIRPREFIX}${PORTSDIR}/sysutils/prips/work/prips.o:${PORTSDIR}/sysutils/prips:build
|
|
.if defined(USE_GNOME)
|
|
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
|
|
gnome.3:${PORTSDIR}/x11/gnomelibs
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/ipsc
|
|
|
|
.if defined(USE_GNOME)
|
|
PLIST= ${PKGDIR}/PLIST.gnome
|
|
ALL_TARGET= all
|
|
.else
|
|
ALL_TARGET= ipsc
|
|
.endif
|
|
|
|
pre-build:
|
|
@${LN} -s ${WRKDIRPREFIX}${PORTSDIR}/sysutils/prips/work/prips \
|
|
${WRKDIR}/prips
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/ipsc ${PREFIX}/bin
|
|
.if defined(USE_GNOME)
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/gipsc ${PREFIX}/bin
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|