diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 1999-10-01 17:05:14 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 1999-10-01 17:05:14 +0000 |
commit | fe4bb072fe0801a07b7a2922b41af715972a49ae (patch) | |
tree | 15905d474e3744ebdfeb6fed2f43951700cd4a7d /cad/spice/Makefile | |
parent | 75a82ad848f182357c0fd28ff13fb68e13a81cc9 (diff) | |
download | pkgsrc-fe4bb072fe0801a07b7a2922b41af715972a49ae.tar.gz |
- added missing -Wl,-Rpath for the X11 libraries
- fixed program version number reported when spice is run to make it consistent
with the version of the program.
- several patches to fix compilation warnings due to missing header files and
some inconsistent variable types.
- broke out previous patch-aa which patched several files into 1 patch per file.
- fixed some code which returned the address of a local char array variable.
- added GNU readline support (a huge improvement in the interface)
- changed USE_X11BASE to USE_X11. No reason to install into X11BASE.
- removed 'x' target from package Makefile
Diffstat (limited to 'cad/spice/Makefile')
-rw-r--r-- | cad/spice/Makefile | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/cad/spice/Makefile b/cad/spice/Makefile index c62f19d32e8..e27b3dbd990 100644 --- a/cad/spice/Makefile +++ b/cad/spice/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.9 1999/04/13 15:31:05 agc Exp $ +# $NetBSD: Makefile,v 1.10 1999/10/01 17:05:14 dmcmahill Exp $ # FreeBSD Id: Makefile,v 1.10 1998/06/08 09:21:37 tg Exp # DISTNAME= sp3f4.kit -PKGNAME= spice-3f5 +PKGNAME= spice-3f5.1 CATEGORIES= cad MASTER_SITES= ftp://ic.eecs.berkeley.edu/pub/Spice3/ EXTRACT_SUFX= .tar.Z @@ -11,13 +11,15 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= packages@netbsd.org HOMEPAGE= http://infopad.eecs.berkeley.edu/~icdesign/SPICE/ +DEPENDS+= readline-4.0:../../devel/readline + # documentation in ftp://ic.eecs.berkeley.edu/pub/Spice3/um.3f3.ps -# These are included as patch-ab +# These are included as patch-ae #PATCH_SITES= ftp://ilpsoft.eecs.berkeley.edu/pub/SPICE3F5/ #PATCHFILES= grid.patch newcoms.patch spsmp.patch -USE_X11BASE= yes +USE_X11= yes NO_WRKSUBDIR= yes do-configure: @@ -49,12 +51,7 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/man/man3/mfb.3 ${PREFIX}/man/man3/mfb.3 post-install: - ${MKDIR} ${PREFIX}/share/examples/spice3 + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/spice3 ${INSTALL_DATA} ${WRKSRC}/examples/*.cir ${PREFIX}/share/examples/spice3 .include "../../mk/bsd.pkg.mk" - -x: -.if exists(${PACKAGES}) - ls -lad ${PACKAGES} -.endif |