mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
e32dbf88d3
PR: ports/89584 Submitted by: Ports Fury
39 lines
915 B
Makefile
39 lines
915 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: cssed
|
|
# Date created: Jul 29, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cssed
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An application to help CSS style sheets creation and maintenance
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnomehack gnometarget gtk20 libxml2
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-plugin-headers
|
|
|
|
MAN1= cssed.1
|
|
|
|
post-patch:
|
|
.for file in scintilla/gtk/ScintillaGTK.cxx
|
|
@cd ${WRKSRC} && ${MV} ${file} ${file}.pre_tr \
|
|
&& ${TR} -d '\r' < ${file}.pre_tr > ${file}
|
|
.endfor
|
|
.for file in scintilla/gtk/Makefile.in src/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|gcc|@CC@|g ; \
|
|
s|g++|@CXX@|g' ${WRKSRC}/src/Makefile.in
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|