mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
51ffa8efa2
- shebangfix a bash script
37 lines
947 B
Makefile
37 lines
947 B
Makefile
# Created by: bruno schwander <bruno@tinkerbox.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= netlist
|
|
PORTVERSION= 1.4.3
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/release/v1.4/${PORTVERSION}/ \
|
|
http://geda.seul.org/release/v1.4/${PORTVERSION}/
|
|
PKGNAMEPREFIX= geda-
|
|
DISTNAME= ${PKGNAMEPREFIX}g${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= The gEDA's netlister
|
|
|
|
LIB_DEPENDS= libgeda.so:${PORTSDIR}/cad/libgeda
|
|
RUN_DEPENDS= ${LOCALBASE}/share/geda/sym:${PORTSDIR}/cad/geda-symbols
|
|
|
|
DATADIR= ${PREFIX}/share/geda
|
|
DOCSDIR= ${PREFIX}/share/doc/geda
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gtk20
|
|
USES= pkgconfig shebangfix
|
|
SHEBANG_FILES= scripts/sch2eaglepos.sh
|
|
CONFIGURE_ARGS= --with-docdir=${DOCSDIR}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E \
|
|
-e "s,^(DATADIR[[:space:]]*=[[:space:]]*)gEDA,\1geda," \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|