mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: beastie
|
|
# Date created: 2005-09-06
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11-themes/beastie/Makefile,v 1.10 2006/07/18 11:56:12 ahze Exp $
|
|
#
|
|
|
|
PORTNAME= beastie
|
|
PORTVERSION= 06.05.03
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-themes
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://people.freebsd.org/~ahze/distfiles/
|
|
MASTER_SITE_SUBDIR= ahze
|
|
DISTNAME= Beastie-${PORTVERSION}
|
|
|
|
MAINTAINER= ahze@FreeBSD.org
|
|
COMMENT= Gnome theme with FreeBSD Colors
|
|
|
|
RUN_DEPENDS+= gtk-engines2>=2.7.4_1:${PORTSDIR}/x11-themes/gtk-engines2 \
|
|
gnome-themes>=2.11.91:${PORTSDIR}/x11-themes/gnome-themes
|
|
|
|
WRKSRC= ${WRKDIR}/Beastie
|
|
NO_BUILD= yes
|
|
|
|
THEME_FILES= README index.theme gtk-2.0/gtkrc
|
|
THEME_DIR= share/themes/Beastie/
|
|
PLIST_FILES= ${THEME_FILES:S|^|${THEME_DIR}|}
|
|
PLIST_DIRS= ${THEME_DIR}/gtk-2.0 ${THEME_DIR}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/${THEME_DIR}/gtk-2.0
|
|
.for f in ${THEME_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/${THEME_DIR}/${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|