1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

- Fix Makefile to install event module recently added

- Make portlint happy

PR:		ports/162602, ports/173447
Submitted by:	Mark Delany <z2n@delta.emu.st>, Kevin Day <kevin@your.org>
This commit is contained in:
Felippe de Meirelles Motta 2013-02-07 19:17:55 +00:00
parent 804b004329
commit 05ba18d9f8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=311880
2 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,10 @@
# New ports collection makefile for: st
# Date created: Sun Feb 18 2001
# Whom: tobez@tobez.org
#
# Created by: tobez
# $FreeBSD$
#
PORTNAME= st
PORTVERSION= 1.9
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}ate-threads/${PORTNAME}ate-threads/${PORTVERSION}
@ -30,9 +28,11 @@ post-patch:
post-install:
@${CP} ${WRKSRC}/public.h ${PREFIX}/include/st.h
.if !defined(NOPORTDOCS)
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/docs/,} ${DOCSDIR}/
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${EXAMPLES:S,^,${WRKSRC}/examples/,} ${EXAMPLESDIR}/
.endif

View File

@ -8,7 +8,7 @@ SHLIB_MINOR= 1
LIB= st
NO_PROFILE= yes
SRCS= io.c key.c sched.c stk.c sync.c
SRCS= io.c key.c sched.c stk.c sync.c event.c
CFLAGS+= -DFREEBSD
.include <bsd.lib.mk>