mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
1e2c3f5796
PR: 53525 Submitted by: Mark Linimon <linimon@lonesome.com>
31 lines
737 B
Makefile
31 lines
737 B
Makefile
# New ports collection makefile for: sp
|
|
# Date created: April 26, 1997
|
|
# Whom: jfieber
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sp
|
|
PORTVERSION= 1.3.4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ftp://ftp.jclark.com/pub/sp/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An object-oriented toolkit for SGML parsing and entity management
|
|
|
|
.if ${MACHINE_ARCH} == sparc64
|
|
BROKEN= does not compile on ${MACHINE_ARCH}
|
|
.endif
|
|
|
|
USE_SUBMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-install:
|
|
$(MKDIR) $(PREFIX)/include/sp
|
|
$(MKDIR) $(PREFIX)/share/doc/sp
|
|
$(RM) -f $(WRKSRC)/include/*.orig
|
|
for file in $(WRKSRC)/include/*;do $(INSTALL_DATA) $$file $(PREFIX)/include/sp;done
|
|
for file in $(WRKSRC)/doc/*;do $(INSTALL_DATA) $$file $(PREFIX)/share/doc/sp;done
|
|
|
|
.include <bsd.port.mk>
|