-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
39 lines (28 loc) · 964 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# $OpenBSD: Makefile,v 1.26 2010/10/24 21:31:50 ajacoutot Exp $
COMMENT= X11 version of Rob Pike's editor, sam
DISTNAME= sam
PKGNAME= sam-4.3.19980506
REVISION= 0
CATEGORIES= plan9
MASTER_SITES= ftp://netlib.bell-labs.com/netlib/research/ \
http://netlib.bell-labs.com/netlib/research/
EXTRACT_SUFX= .shar.gz
EXTRACT_CASES= *.shar.gz) ${GZIP_CMD} -dc ${FULLDISTDIR}/$$archive | /bin/sh;;
MAINTAINER= Markus Friedl <[email protected]>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xt c pthread-stubs xcb
USE_GROFF = Yes
WRKDIST= ${WRKDIR}
NO_REGRESS= Yes
SAMDOCDIR= ${PREFIX}/share/doc/sam
SAMDOCFILES= README doc/sam.ps doc/sam.tut.ms doc/se.ps doc/Sam.ad
post-install:
${INSTALL_DATA_DIR} ${SAMDOCDIR}
${INSTALL_MAN} $(WRKSRC)/doc/sam.1 $(PREFIX)/man/man1
@set -e; for f in ${SAMDOCFILES}; do \
${INSTALL_DATA} ${WRKSRC}/$${f} ${SAMDOCDIR}; \
done
.include <bsd.port.mk>