mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
65ab34a667
Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
28 lines
806 B
Makefile
28 lines
806 B
Makefile
# New ports collection makefile for: sp
|
|
# Version required: 1.2.1
|
|
# Date created: April 26, 1997
|
|
# Whom: jfieber
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= sp-1.3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ftp://ftp.jclark.com/pub/sp/
|
|
|
|
MAINTAINER= chuckr@FreeBSD.org
|
|
|
|
post-patch:
|
|
$(CP) $(WRKSRC)/Makefile $(WRKSRC)/Makefile.sed
|
|
$(CP) $(WRKSRC)/Makefile.lib $(WRKSRC)/Makefile.lib.sed
|
|
$(SED) -e "s%/opt/local%$(PREFIX)%" <$(WRKSRC)/Makefile.sed >$(WRKSRC)/Makefile
|
|
$(SED) -e "s%/opt/local%$(PREFIX)%" <$(WRKSRC)/Makefile.lib.sed >$(WRKSRC)/Makefile.lib
|
|
|
|
post-install:
|
|
$(MKDIR) $(PREFIX)/include/sp
|
|
$(MKDIR) $(PREFIX)/share/doc/sp
|
|
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>
|