mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
42 lines
952 B
Makefile
42 lines
952 B
Makefile
# New ports collection makefile for: geda
|
|
# Date created: 24 Nov 1998
|
|
# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= geda
|
|
PORTVERSION= 20070216
|
|
PORTREVISION= 2
|
|
CATEGORIES= cad
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= The "meta-port" for gEDA
|
|
|
|
RUN_DEPENDS= ${DATADIR}/sym:${PORTSDIR}/cad/geda-symbols \
|
|
gschem:${PORTSDIR}/cad/geda-gschem \
|
|
gnetlist:${PORTSDIR}/cad/geda-netlist \
|
|
gmk_sym:${PORTSDIR}/cad/geda-utils \
|
|
gsymcheck:${PORTSDIR}/cad/geda-symcheck \
|
|
gattrib:${PORTSDIR}/cad/geda-gattrib
|
|
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS= EXAMPLES "Install gEDA's examples" on \
|
|
DOCS "Install gEDA's documentation" on
|
|
|
|
.if !defined(WITHOUT_EXAMPLES)
|
|
RUN_DEPENDS+= ${EXAMPLESDIR}/README:${PORTSDIR}/cad/geda-examples
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_DOCS)
|
|
RUN_DEPENDS+= ${DOCSDIR}/gedadocs.html:${PORTSDIR}/cad/geda-docs
|
|
.endif
|
|
|
|
do-install: # empty
|
|
|
|
.include <bsd.port.mk>
|