blob: 4b9bfc30b9c09f4ee719e71dc9ead09274e1556f (
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
|
# New ports collection makefile for: gtk-engines
# Date Created: 23 Dec 1998
# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/x11-themes/gtk-engines/Makefile,v 1.1 2006/07/18 16:32:36 ahze Exp $
PORTNAME= gtk-engines
PORTVERSION= 0.12
PORTREVISION= 8
CATEGORIES= x11-themes
MASTER_SITES= GNOME
MAINTAINER= gnome@FreeBSD.org
COMMENT= Theme engine for gtk+ toolkits
USE_GNOME= imlib
GNU_CONFIGURE= yes
THEMES= metal notif pixmap raleigh redmond95
post-patch:
@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/ltconfig
@for theme in ${THEMES}; do \
cd ${WRKSRC}/$$theme/Theme/gtk; \
${MV} gtkrc gtkrc.tmp; \
${SED} -e s^%%PREFIX%%^${PREFIX}^g < gtkrc.tmp > gtkrc; \
done
.include <bsd.port.mk>
|