diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2019-06-08 15:59:46 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2019-06-08 15:59:46 +0000 |
commit | bb5cf6c4f3c10d3eff9b5891aa38093e483e4a60 (patch) | |
tree | 0dd599c3bd3c385b989cd2ccb511ac9a39bb8c32 /graphics/linux-c7-wayland | |
parent | 4bafa67ea0cfc5c54e5d698ef3aeaff8cd3115ad (diff) | |
download | freebsd-ports-bb5cf6c4f3c10d3eff9b5891aa38093e483e4a60.zip |
Address some portlint warnings in the Linux infrastructure ports.
Eliminate LINUXNAME from port Makefiles. This was just a helper variable
without special meaning outside port Makefiles but several developers have
copied it to new ports where it was then unused, apparently thinking that
it did have some special meaning.
Diffstat (limited to 'graphics/linux-c7-wayland')
-rw-r--r-- | graphics/linux-c7-wayland/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/graphics/linux-c7-wayland/Makefile b/graphics/linux-c7-wayland/Makefile index 47f48f21519d..7084957bd21b 100644 --- a/graphics/linux-c7-wayland/Makefile +++ b/graphics/linux-c7-wayland/Makefile @@ -4,17 +4,19 @@ PORTNAME= wayland PORTVERSION= 1.15.0 DISTVERSIONSUFFIX= -1.el7 CATEGORIES= graphics linux -LIB_DISTNAMES= libwayland-client-${DISTVERSIONFULL} \ - libwayland-cursor-${DISTVERSIONFULL} \ - libwayland-egl-${DISTVERSIONFULL} \ - libwayland-server-${DISTVERSIONFULL} MAINTAINER= emulation@FreeBSD.org COMMENT= Wayland compositor libraries (Linux CentOS ${LINUX_DIST_VER}) -DESCR= ${.CURDIR}/../wayland/pkg-descr USES= linux:c7 USE_LDCONFIG= yes USE_LINUX_RPM= yes +LIB_DISTNAMES= libwayland-client-${DISTVERSIONFULL} \ + libwayland-cursor-${DISTVERSIONFULL} \ + libwayland-egl-${DISTVERSIONFULL} \ + libwayland-server-${DISTVERSIONFULL} + +DESCR= ${.CURDIR}/../wayland/pkg-descr + .include <bsd.port.mk> |