blob: 38b15dcb13eb773945cc5b43e0dc56790db2139d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: stickynotes_applet
# Date created: 17 February 2003
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= stickynotes_applet
PORTVERSION= 1.2.3
PORTREVISION= 1
CATEGORIES= misc gnome
MASTER_SITES= http://loban.caltech.edu/stickynotes/packages/
MAINTAINER= marcus@FreeBSD.org
COMMENT= Applet that adds sticky notes to your desktop
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_REINPLACE= yes
USE_GNOME= gnomeprefix gnomehack gnomepanel
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in INSTALL COPYING NEWS AUTHORS THANKS README TODO ChangeLog
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|