bcallah 1d19123980 Import cad/qrouter, a multi-level, over-the-cell maze router for VLSI
design.
Original submission from Alessandro De Laurenzis, who takes MAINTAINER --
thanks!
ok bentley@

Qrouter is a tool to generate metal layers and vias to physically
connect together a netlist in a VLSI fabrication technology. It
is a maze router, otherwise known as an "over-the-cell" router or
"sea-of-gates" router. That is, unlike a channel router, it begins with
a description of placed standard cells, usually packed together at
minimum spacing, and places metal routes over the standard cells.

Qrouter uses the open standard LEF and DEF formats as file input and
output. It takes the cell definitions from a LEF file, and analyzes
the geometry for each cell to determine contact points and route
obstructions. It then reads the cell placement, pin placement, and
netlist from a DEF file, performs the detailed route, and writes an
annotated DEF file as output.
2018-08-28 15:09:08 +00:00

35 lines
759 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $
COMMENT = multi-level, over-the-cell maze router for VLSI design
DISTNAME = qrouter-1.3.104
EXTRACT_SUFX = .tgz
CATEGORIES = cad
HOMEPAGE = http://opencircuitdesign.com/qrouter/
MAINTAINER = Alessandro De Laurenzis <just22@atlantide.t28.net>
# GPLv2 only
PERMIT_PACKAGE_CDROM = Yes
WANTLIB = ${MODTK_WANTLIB} c m ICE X11 SM
MASTER_SITES = http://opencircuitdesign.com/qrouter/archive/
MODULES = x11/tk
LIB_DEPENDS = ${MODTK_LIB_DEPENDS}
USE_GMAKE = Yes
CONFIGURE_STYLE = autoconf no-autoheader
AUTOCONF_VERSION = 2.60
CONFIGURE_ARGS += --with-tcl=${MODTCL_LIBDIR} \
--with-tk=${MODTK_LIBDIR}
NO_TEST = Yes
post-patch:
@${SUBST_CMD} ${WRKSRC}/configure.in
.include <bsd.port.mk>