mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
e695352d91
- Remove leading article from COMMENT - Add desktop entry file - Allow staging PR: ports/184837 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
34 lines
833 B
Makefile
34 lines
833 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cssed
|
|
PORTVERSION= 0.4.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Application to help CSS style sheets creation and maintenance
|
|
|
|
USES= dos2unix pathfix pkgconfig
|
|
DOS2UNIX_FILES= scintilla/gtk/ScintillaGTK.cxx
|
|
USE_GNOME= gtk20 libxml2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-plugin-headers
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
DESKTOP_ENTRIES="CSSED" "CSS Editor" "${DATADIR}/pixmaps/cssed-icon.png" \
|
|
"${PORTNAME}" "GTK;Development;WebDevelopment;TextEditor;" ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|gthread-2.0|gmodule-2.0|' ${WRKSRC}/configure
|
|
.for i in scintilla/gtk/Makefile.in src/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|gcc|@CC@|g ; \
|
|
s|g++|@CXX@|g' ${WRKSRC}/${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|