Upstream used to distribute protocol headers as separate packages, but has decided to merge those to a common package, named xorgproto. This update tracks that change. * Add a new port, x11/xorgproto, with are protocol headers for xorg. * Hook the new protocol port to the build and to infrastructure in bsd.xorg.mk. * Update all ports with a dependency on any of the old *proto packages to instead depend on xorgproto. Bump portrevision. * Delete the old *proto packages, update MOVED. PR: 230023 Submitted by: zeising Approved by: portmgr (antoine) exp-run by: antoine
31 lines
672 B
Makefile
31 lines
672 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= X11-Xlib
|
|
PORTVERSION= 0.18
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11 perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Low-level access to the X11 library
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= p5-Devel-CheckLib>=0:devel/p5-Devel-CheckLib \
|
|
p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends \
|
|
p5-Try-Tiny>=0:lang/p5-Try-Tiny
|
|
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_XORG= x11 xcomposite xext xfixes xinerama xorgproto xrender xtst
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${PERL} Makefile.PL
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/X11/Xlib/Xlib.so
|
|
|
|
.include <bsd.port.mk>
|