blob: 96101e2676742bf9c21ab3fbd57c8cd61dc50279 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# ex:ts=8
# Ports collection makefile for: gnucap
# Date created: Feb 7, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= gnucap
PORTVERSION= 2008.06.08
PORTREVISION= 1
CATEGORIES= cad
MASTER_SITES= http://www.gnucap.org/devel/ \
http://www.gnucap.org/devel/archive/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/./-/g}
MAINTAINER= stas@FreeBSD.org
COMMENT= The GNU Circuit Analysis Package
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --docdir=${PREFIX}/share/doc/${PORTNAME}
OPTIONS= READLINE "Enable commandline features via readline" on
MAN1= gnucap.1 gnucap-ibis.1
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_READLINE) || exists(${LOCALBASE}/lib/libreadline.so.6)
LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline
.endif
.include <bsd.port.post.mk>
|