7cd8c2797d
Rename this ports to use the real vendor package name. The advantage of this is to allow our users' keyword search works and easier for users to file the Bugzilla report when they use our name of ports. Debian, Gentoo, NetBSD and other OSs have the correct package name, but not in our ports tree. My team, FreeBSD GNOME Team, have agreed with it. As for other ports, chase the rename.
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# New ports collection makefile for: sawfish-themes
|
|
# Date created: May 12 2004
|
|
# Whom: Alexey Mikhailov <karma@ez.pereslavl.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sawfish-themes
|
|
PORTVERSION= 0.11
|
|
CATEGORIES= x11-themes
|
|
MASTER_SITES= http://ftp.debian.org/debian/pool/main/s/${PORTNAME}/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= karma@ez.pereslavl.ru
|
|
COMMENT= Themes for Sawfish window manager
|
|
|
|
RUN_DEPENDS= sawfish:${PORTSDIR}/x11-wm/sawfish
|
|
|
|
USE_X_PREFIX= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
DATA_DIRS= 2YearsToNever Anonymous Aquiline BWM Big Blackwindow Bubbles_Exact \
|
|
CoolClean Derivative DoubleHeliX Elberg Empire FinalStep Greene2.0 Hacksaw \
|
|
HeliX Klarth Microtene OrangeJuice SawLook SawthenaForever Strap \
|
|
Studio T-16-blue T-16-red T-16-yellow Titanium V absolute-metal \
|
|
bluefoo gorilla gorillaz mxflat typo
|
|
|
|
do-install:
|
|
@${MKDIR} ${X11BASE}/share/sawfish/1.3/themes
|
|
.for d in ${DATA_DIRS}
|
|
@${MKDIR} ${PREFIX}/share/sawfish/1.3/themes/${d}
|
|
@cd ${WRKSRC}/${d} && ${FIND} . | \
|
|
${CPIO} --quiet -pdm -L -R ${LIBOWN}:${LIBGRP} \
|
|
${PREFIX}/share/sawfish/1.3/themes/${d}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|