diff options
author | mat <mat@FreeBSD.org> | 2017-06-13 22:40:17 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-06-13 22:40:17 +0800 |
commit | f0370859d0b4316b01b13b950df12fa7f5f9fc33 (patch) | |
tree | 3123f4370f9b6b03373fd469b0a79d1457c40671 /x11-themes | |
parent | 9bd070c9c872a857581c448f03c34c7cea4c773b (diff) | |
download | freebsd-ports-gnome-f0370859d0b4316b01b13b950df12fa7f5f9fc33.tar.gz freebsd-ports-gnome-f0370859d0b4316b01b13b950df12fa7f5f9fc33.tar.zst freebsd-ports-gnome-f0370859d0b4316b01b13b950df12fa7f5f9fc33.zip |
Don't use FLAVOR as a variable in ports.
It'll save some work when FLAVORS comes around for realz.
Sponsored by: Absolight
Diffstat (limited to 'x11-themes')
4 files changed, 8 insertions, 8 deletions
diff --git a/x11-themes/gtk-aluminumalloy-cryogenic-theme/Makefile b/x11-themes/gtk-aluminumalloy-cryogenic-theme/Makefile index b9ad04052546..3dd9a184d442 100644 --- a/x11-themes/gtk-aluminumalloy-cryogenic-theme/Makefile +++ b/x11-themes/gtk-aluminumalloy-cryogenic-theme/Makefile @@ -3,7 +3,7 @@ PORTREVISION= 5 -FLAVOR= cryogenic +THEME_FLAVOR= cryogenic MASTERDIR= ${.CURDIR}/../gtk-aluminumalloy-volcanic-theme diff --git a/x11-themes/gtk-aluminumalloy-smog-theme/Makefile b/x11-themes/gtk-aluminumalloy-smog-theme/Makefile index 9e073a6f9179..85cfdef0facd 100644 --- a/x11-themes/gtk-aluminumalloy-smog-theme/Makefile +++ b/x11-themes/gtk-aluminumalloy-smog-theme/Makefile @@ -3,7 +3,7 @@ PORTREVISION= 5 -FLAVOR= smog +THEME_FLAVOR= smog MASTERDIR= ${.CURDIR}/../gtk-aluminumalloy-volcanic-theme diff --git a/x11-themes/gtk-aluminumalloy-toxic-theme/Makefile b/x11-themes/gtk-aluminumalloy-toxic-theme/Makefile index 433df944781d..fe1f7c6ecec2 100644 --- a/x11-themes/gtk-aluminumalloy-toxic-theme/Makefile +++ b/x11-themes/gtk-aluminumalloy-toxic-theme/Makefile @@ -3,7 +3,7 @@ PORTREVISION= 5 -FLAVOR= toxic +THEME_FLAVOR= toxic MASTERDIR= ${.CURDIR}/../gtk-aluminumalloy-volcanic-theme diff --git a/x11-themes/gtk-aluminumalloy-volcanic-theme/Makefile b/x11-themes/gtk-aluminumalloy-volcanic-theme/Makefile index 06a5b222c7af..553678a33716 100644 --- a/x11-themes/gtk-aluminumalloy-volcanic-theme/Makefile +++ b/x11-themes/gtk-aluminumalloy-volcanic-theme/Makefile @@ -7,16 +7,16 @@ PORTREVISION?= 8 CATEGORIES= x11-themes gnome MASTER_SITES= http://www.users.monornet.hu/linux/gtk2/oldies/ PKGNAMEPREFIX?= ${TYPE}- -PKGNAMESUFFIX?= -${FLAVOR}-theme -DISTNAME= aa_${FLAVOR} +PKGNAMESUFFIX?= -${THEME_FLAVOR}-theme +DISTNAME= aa_${THEME_FLAVOR} MAINTAINER= danfe@FreeBSD.org -COMMENT= Port of Mac OS X theme Aluminum Alloy (${FLAVOR} flavor) +COMMENT= Port of Mac OS X theme Aluminum Alloy (${THEME_FLAVOR} flavor) TYPE?= gtk -FLAVOR?= volcanic +THEME_FLAVOR?= volcanic -THEME_NAME= AluminumAlloy-${FLAVOR:tu:C/^(.).*$/\1/g}${FLAVOR:C/^(.)//} +THEME_NAME= AluminumAlloy-${THEME_FLAVOR:tu:C/^(.).*$/\1/g}${THEME_FLAVOR:C/^(.)//} WRKSRC= ${WRKDIR}/${THEME_NAME} USES= tar:bzip2 |