mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
31 lines
797 B
Makefile
31 lines
797 B
Makefile
|
# New ports collection makefile for: gtkscintilla
|
||
|
# Date created: 14 December 2000
|
||
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= gtkscintilla
|
||
|
PORTVERSION= 0.2
|
||
|
CATEGORIES= x11-toolkits
|
||
|
MASTER_SITES= http://www.moleskine.f2s.com/
|
||
|
DISTNAME= GtkScintilla-${PORTVERSION}
|
||
|
|
||
|
MAINTAINER= sobomax@FreeBSD.org
|
||
|
|
||
|
LIB_DEPENDS= scintilla.1:${PORTSDIR}/x11-toolkits/scintilla
|
||
|
|
||
|
USE_X_PREFIX= yes
|
||
|
USE_GMAKE= yes
|
||
|
USE_GTK= yes
|
||
|
INSTALLS_SHLIB= yes
|
||
|
|
||
|
do-install:
|
||
|
${MKDIR} ${PREFIX}/include/scintilla
|
||
|
${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/scintilla
|
||
|
${INSTALL_DATA} ${WRKSRC}/libgtkscintilla.a ${PREFIX}/lib
|
||
|
${INSTALL_PROGRAM} ${WRKSRC}/libgtkscintilla.so.0 ${PREFIX}/lib
|
||
|
${LN} -sf ${PREFIX}/lib/libgtkscintilla.so.0 ${PREFIX}/lib/libgtkscintilla.so
|
||
|
|
||
|
.include <bsd.port.mk>
|