mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
9156bf1b9e
Some ports were already installing in the System domain, for these just remove the Makefile lines explicitly specifying the install domain. The rest are installed in the Local domain, remove any overrides, update their pkg-plists and any explicit paths in the Makefiles and then bump port revision. Approved by: bapt (mentor) Differential Revision: https://reviews.freebsd.org/D2977
36 lines
860 B
Makefile
36 lines
860 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= encore
|
|
PORTVERSION= 0.3.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel gnustep
|
|
MASTER_SITES= SF/fortytwo/Encore/${PORTVERSION}
|
|
PKGNAMEPREFIX= fortytwo-
|
|
DISTFILES= Encore-${PORTVERSION}-src.tgz \
|
|
Encore-${PORTVERSION}-api-ref.tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Utility classes for GNUstep
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gnustep
|
|
USE_GNUSTEP= back build
|
|
DEFAULT_LIBVERSION= 0.1
|
|
USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES}
|
|
|
|
WRKSRC= ${WRKDIR}/Encore
|
|
DOCSDIR= ${GNUSTEP_PREFIX}/Local/Library/Documentation/Encore
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKDIR}/Encore-${PORTVERSION}-api-ref && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/Encore.framework/Versions/0/libEncore.so
|
|
|
|
.include <bsd.port.mk>
|