mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
faee3db96b
- Update www/vdr-plugin-live to 0.3.0 with patches merged from the git 0.3.0 branch. (stagifying the vdr ports left for later.) - Use new LIB_DEPENDS syntax. - Rewrite NOPORTDOCS.
41 lines
817 B
Makefile
41 lines
817 B
Makefile
# Created by: Juergen Lock <nox@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cxxtools
|
|
PORTVERSION= 2.2.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.tntnet.org/download/
|
|
|
|
MAINTAINER= nox@FreeBSD.org
|
|
COMMENT= Collection of general-purpose C++ classes
|
|
|
|
PATCH_STRIP= -p1
|
|
USES= iconv pathfix
|
|
USE_CSTD= gnu89
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
BROKEN= Does not configure on sparc64
|
|
.endif
|
|
.if ${ARCH} == "amd64"
|
|
PLIST_SUB+= X86_64_ONLY=""
|
|
.else
|
|
PLIST_SUB+= X86_64_ONLY="@comment "
|
|
.endif
|
|
.if ${ARCH} == "i386"
|
|
PLIST_SUB+= I386_ONLY=""
|
|
.else
|
|
PLIST_SUB+= I386_ONLY="@comment "
|
|
.endif
|
|
.if (${ARCH} == "amd64") || (${ARCH} == "i386")
|
|
PLIST_SUB+= X86_ONLY=""
|
|
.else
|
|
PLIST_SUB+= X86_ONLY="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|