mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
459087462b
+ Port now uses gnomelibs instead of plain GTK; + port's documentation distributed in separate distfile now being installed, if NOPORTDOCS has not been set; + USE_X_PREFIX added to Makefile, because obviously this port falls into the X11 category; + libintl dependency added to port's Makefile; + WWW added to the pkg/DESCR; + MASTER_SITES updated to reflect reality; + pkg/PLIST has been sorted; + "Date created:" slightly adjusted to match commonly accepted conventions. PR: 18231 Submitted by: Maxim Sobolev <sobomax@altavista.net>
42 lines
965 B
Makefile
42 lines
965 B
Makefile
# New ports collection makefile for: gnotepad+
|
|
# Date created: 08 March 1999
|
|
# Whom: brett@peloton.physics.montana.edu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnotepad+
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= editors www
|
|
MASTER_SITES= http://download.sourceforge.net/gnotepad/
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}-help-${DOCVERSION}${EXTRACT_SUFX}
|
|
.endif
|
|
|
|
MAINTAINER= brett@peloton.runet.edu
|
|
|
|
LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
|
gnome.3:${PORTSDIR}/x11/gnomelibs \
|
|
intl.1:${PORTSDIR}/devel/gettext
|
|
|
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
|
|
|
DOCVERSION= 1.2.0
|
|
USE_X_PREFIX= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \
|
|
CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
MAN1= gnp.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-extract:
|
|
${MV} ${WRKSRC}/docs ${WRKSRC}/docs.old
|
|
${CP} -R ${WRKDIR}/${PORTNAME}-help-${DOCVERSION}/docs \
|
|
${WRKSRC}/docs
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|