mirror of OpenBSD xenocara tree github.com/openbsd/xenocara
openbsd
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build infrastructure for libxcvt

matthieu ea857117 f0228dba

+61
+21
lib/libxcvt/Makefile
··· 1 + # $OpenBSD: Makefile,v 1.1 2021/10/27 16:13:42 matthieu Exp $ 2 + 3 + SUBDIR= lib cvt 4 + 5 + INCS= libxcvt.h libxcvt_mode.h 6 + 7 + obj: _xenocara_obj 8 + 9 + 10 + includes: _SUBDIRUSE 11 + cd ${.CURDIR}/include/libxcvt; for i in ${INCS}; do \ 12 + j="cmp -s $$i ${DESTDIR}${INCSDIR}/libxcvt/$$i || \ 13 + ${INSTALL_DATA} $$i ${DESTDIR}${INCSDIR}/libxcvt"; \ 14 + echo "\tinstalling $$i"; \ 15 + eval "$$j"; \ 16 + done 17 + 18 + beforeinstall: includes 19 + 20 + .include <bsd.subdir.mk> 21 + .include <bsd.xorg.mk>
+20
lib/libxcvt/cvt/Makefile
··· 1 + # $OpenBSD: Makefile,v 1.1 2021/10/27 16:13:42 matthieu Exp $ 2 + 3 + PROG= cvt 4 + 5 + CFLAGS+= -I${.CURDIR}/../include 6 + 7 + LDADD= -L../lib -lxcvt -lm 8 + 9 + obj: _xenocara_obj 10 + 11 + cvt.1: ${.CURDIR}/../man/cvt.man 12 + sed -e 's,appmansuffix,1,g' \ 13 + -e 's,filemansuffix,5,g' \ 14 + -e 's,vendorversion,"libxcvt 0.1.1" "X Version 11",g' \ 15 + < ${.CURDIR}/../man/cvt.man >$@ 16 + 17 + CLEANFILES+= cvt.1 18 + 19 + .include <bsd.prog.mk> 20 + .include <bsd.xorg.mk>
+18
lib/libxcvt/lib/Makefile
··· 1 + # $OpenBSD: Makefile,v 1.1 2021/10/27 16:13:42 matthieu Exp $ 2 + 3 + .include <bsd.xconf.mk> 4 + 5 + LIB= xcvt 6 + 7 + SRCS= libxcvt.c 8 + 9 + CFLAGS+= -I${.CURDIR}/../include 10 + 11 + LDADD= -lm 12 + 13 + NOPROFILE= 14 + 15 + obj: _xenocara_obj 16 + 17 + .include <bsd.lib.mk> 18 + .include <bsd.xorg.mk>
+2
lib/libxcvt/lib/shlib_version
··· 1 + major=0 2 + minor=0