mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
# New ports collection makefile for: scintilla
|
|
# Date created: 27 November 2000
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $
|
|
|
|
PORTNAME= scintilla
|
|
PORTVERSION= 1.73
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://www.scintilla.org/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= scite${PORTVERSION:S/.//g}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A full-featured free source code editing component for GTK+
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}/gtk
|
|
|
|
USE_XLIB= yes
|
|
USE_GMAKE= yes
|
|
USE_ICONV= yes
|
|
MAKEFILE= makefile
|
|
USE_LDCONFIG= yes
|
|
|
|
.if defined(WITH_GTK2)
|
|
USE_GNOME= gtk20
|
|
PKGNAMESUFFIX:= -gtk2
|
|
.else
|
|
USE_GNOME= gtk12
|
|
MAKE_ARGS+= GTK1=yes
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
MAKE_ARGS+= PICFLAGS=-DPIC
|
|
.else
|
|
MAKE_ARGS+= PICFLAGS="-DPIC -fPIC -fpic"
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/include/scintilla
|
|
${INSTALL_DATA} ${WRKSRC}/../include/*.h ${PREFIX}/include/scintilla
|
|
${INSTALL_PROGRAM} ${WRKSRC}/../bin/libscintilla.so.1 ${PREFIX}/lib
|
|
${LN} -sf ${PREFIX}/lib/libscintilla.so.1 ${PREFIX}/lib/libscintilla.so
|
|
${INSTALL_PROGRAM} ${WRKSRC}/../bin/libscintilla_lexers.so.1 ${PREFIX}/lib
|
|
${LN} -sf ${PREFIX}/lib/libscintilla_lexers.so.1 ${PREFIX}/lib/libscintilla_lexers.so
|
|
|
|
.include <bsd.port.post.mk>
|