experimental work: build xenocara components as "packages" and hook them
into dpb. not 100% ready yet, committed to keep working in tree.
This commit is contained in:
parent
d279dd8f90
commit
1fbbf50998
7
base/Makefile
Normal file
7
base/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
|
||||
SUBDIR =
|
||||
SUBDIR += bootstrap
|
||||
SUBDIR += xenocara
|
||||
|
||||
.include <bsd.port.subdir.mk>
|
23
base/README
Normal file
23
base/README
Normal file
@ -0,0 +1,23 @@
|
||||
# $OpenBSD: README,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
This is a set of experimental ports to build xenocara as components
|
||||
They reach out into ${XSRCDIR} to get access to the component.
|
||||
|
||||
Each package is fake ! the real tarball is built under
|
||||
${PACKAGE_REPOSITORY}/${ARCH}/components
|
||||
|
||||
the "package" will install stuff under /usr/local/libdata/base/*
|
||||
- the name of the tarball
|
||||
- and the corresponding list (manifest)
|
||||
|
||||
when the package first installs, it copies the name of the tarball under
|
||||
/var/db/components
|
||||
|
||||
so that when it gets reinstalled, there's no need to extract the same files
|
||||
again.
|
||||
|
||||
The common part to that is in bootstrap/
|
||||
|
||||
There are two meta packages:
|
||||
- xenocara/meta, to build stuff that requires xenocara to be there
|
||||
- xenocara/release, to build the remaining critical components and create
|
||||
the X release
|
20
base/bootstrap/Makefile
Normal file
20
base/bootstrap/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:06 espie Exp $
|
||||
|
||||
COMMENT = base system pseudo package bootstrap
|
||||
CATEGORIES = base xenocara
|
||||
NO_BUILD = Yes
|
||||
|
||||
DISTNAME = base-boostrap-0
|
||||
DISTFILES =
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/libdata/base
|
||||
${SUBST_CMD} -c -g ${BINGRP} -o ${BINOWN} ${FILESDIR}/component-install ${PREFIX}/libexec/component-install
|
||||
chmod a+rx ${PREFIX}/libexec/component-install
|
||||
|
||||
.include <bsd.port.mk>
|
16
base/bootstrap/files/component-install
Normal file
16
base/bootstrap/files/component-install
Normal file
@ -0,0 +1,16 @@
|
||||
#! /bin/sh
|
||||
data=$1
|
||||
set -e
|
||||
db=/var/db/components
|
||||
mkdir -p ${db}
|
||||
cat ${TRUEPREFIX}/libdata/base/${data}.gen|while read component tarball
|
||||
do
|
||||
w=`cat ${db}/${component} 2>/dev/null||true`
|
||||
if [ "x$w" = "x$tarball" ]
|
||||
then
|
||||
continue
|
||||
fi
|
||||
echo "Installing $component from $tarball"
|
||||
cd / && tar zxpf $tarball
|
||||
echo $tarball >${db}/${component}
|
||||
done
|
1
base/bootstrap/pkg/DESCR
Normal file
1
base/bootstrap/pkg/DESCR
Normal file
@ -0,0 +1 @@
|
||||
This is the base system "fake" install framework
|
3
base/bootstrap/pkg/PLIST
Normal file
3
base/bootstrap/pkg/PLIST
Normal file
@ -0,0 +1,3 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2012/11/01 09:58:06 espie Exp $
|
||||
libdata/base/
|
||||
libexec/component-install
|
17
base/xenocara/Makefile
Normal file
17
base/xenocara/Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
|
||||
SUBDIR =
|
||||
SUBDIR += share/mk
|
||||
SUBDIR += proto
|
||||
SUBDIR += lib
|
||||
SUBDIR += data
|
||||
SUBDIR += app
|
||||
SUBDIR += driver
|
||||
SUBDIR += font
|
||||
SUBDIR += kdrive
|
||||
SUBDIR += meta
|
||||
SUBDIR += util
|
||||
SUBDIR += xserver
|
||||
#SUBDIR += release
|
||||
|
||||
.include <bsd.port.subdir.mk>
|
94
base/xenocara/app/Makefile
Normal file
94
base/xenocara/app/Makefile
Normal file
@ -0,0 +1,94 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
SUBDIR =
|
||||
SUBDIR += appres
|
||||
SUBDIR += bdftopcf
|
||||
SUBDIR += beforelight
|
||||
SUBDIR += bitmap
|
||||
SUBDIR += cwm
|
||||
SUBDIR += editres
|
||||
SUBDIR += fonttosfnt
|
||||
SUBDIR += fslsfonts
|
||||
SUBDIR += fstobdf
|
||||
SUBDIR += fvwm
|
||||
SUBDIR += glxgears
|
||||
SUBDIR += glxinfo
|
||||
SUBDIR += iceauth
|
||||
SUBDIR += ico
|
||||
SUBDIR += listres
|
||||
SUBDIR += luit
|
||||
SUBDIR += mkfontdir
|
||||
SUBDIR += mkfontscale
|
||||
SUBDIR += oclock
|
||||
SUBDIR += rgb
|
||||
SUBDIR += scripts
|
||||
SUBDIR += sessreg
|
||||
SUBDIR += setxkbmap
|
||||
SUBDIR += showfont
|
||||
SUBDIR += smproxy
|
||||
SUBDIR += ssh-askpass
|
||||
SUBDIR += twm
|
||||
SUBDIR += video
|
||||
SUBDIR += viewres
|
||||
SUBDIR += x11perf
|
||||
SUBDIR += xauth
|
||||
SUBDIR += xbacklight
|
||||
SUBDIR += xbiff
|
||||
SUBDIR += xcalc
|
||||
SUBDIR += xclipboard
|
||||
SUBDIR += xclock
|
||||
SUBDIR += xcmsdb
|
||||
SUBDIR += xcompmgr
|
||||
SUBDIR += xconsole
|
||||
SUBDIR += xdm
|
||||
SUBDIR += xdpyinfo
|
||||
SUBDIR += xdriinfo
|
||||
SUBDIR += xedit
|
||||
SUBDIR += xev
|
||||
SUBDIR += xeyes
|
||||
SUBDIR += xf86dga
|
||||
SUBDIR += xfd
|
||||
SUBDIR += xfontsel
|
||||
SUBDIR += xfs
|
||||
SUBDIR += xfsinfo
|
||||
SUBDIR += xfwp
|
||||
SUBDIR += xgamma
|
||||
SUBDIR += xgc
|
||||
SUBDIR += xhost
|
||||
SUBDIR += xidle
|
||||
SUBDIR += xinit
|
||||
SUBDIR += xinput
|
||||
SUBDIR += xkbcomp
|
||||
SUBDIR += xkbevd
|
||||
SUBDIR += xkbprint
|
||||
SUBDIR += xkbutils
|
||||
SUBDIR += xkill
|
||||
SUBDIR += xload
|
||||
SUBDIR += xlockmore
|
||||
SUBDIR += xlogo
|
||||
SUBDIR += xlsatoms
|
||||
SUBDIR += xlsclients
|
||||
SUBDIR += xlsfonts
|
||||
SUBDIR += xmag
|
||||
SUBDIR += xman
|
||||
SUBDIR += xmessage
|
||||
SUBDIR += xmodmap
|
||||
SUBDIR += xmore
|
||||
SUBDIR += xpr
|
||||
SUBDIR += xprop
|
||||
SUBDIR += xrandr
|
||||
SUBDIR += xrdb
|
||||
SUBDIR += xrefresh
|
||||
SUBDIR += xset
|
||||
SUBDIR += xsetroot
|
||||
SUBDIR += xsm
|
||||
SUBDIR += xstdcmap
|
||||
SUBDIR += xsystrace
|
||||
SUBDIR += xterm
|
||||
SUBDIR += xtsscale
|
||||
SUBDIR += xvctl
|
||||
SUBDIR += xvidtune
|
||||
SUBDIR += xvinfo
|
||||
SUBDIR += xwd
|
||||
SUBDIR += xwininfo
|
||||
SUBDIR += xwud
|
||||
.include <bsd.port.subdir.mk>
|
9
base/xenocara/app/Makefile.inc
Normal file
9
base/xenocara/app/Makefile.inc
Normal file
@ -0,0 +1,9 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
|
||||
MODULES += base/xenocara
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
5
base/xenocara/app/appres/Makefile
Normal file
5
base/xenocara/app/appres/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/appres
|
||||
XDEPS = lib/libX11 lib/libXt
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/bdftopcf/Makefile
Normal file
5
base/xenocara/app/bdftopcf/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/bdftopcf
|
||||
XDEPS = lib/libXfont
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/beforelight/Makefile
Normal file
5
base/xenocara/app/beforelight/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/beforelight
|
||||
XDEPS = lib/libX11 lib/libXScrnSaver lib/libXt lib/libXaw
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/bitmap/Makefile
Normal file
6
base/xenocara/app/bitmap/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/bitmap
|
||||
XDEPS = lib/libX11 lib/libXmu proto/x11proto data/bitmaps \
|
||||
lib/libXaw lib/libXmu lib/libXt
|
||||
|
||||
.include <bsd.port.mk>
|
9
base/xenocara/app/cwm/Makefile
Normal file
9
base/xenocara/app/cwm/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/cwm
|
||||
|
||||
XDEPS = lib/libXft lib/libXrender lib/libX11 lib/libxcb \
|
||||
lib/libXau lib/libXdmcp lib/fontconfig lib/freetype \
|
||||
lib/libXinerama lib/libXrandr lib/libXext
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/editres/Makefile
Normal file
5
base/xenocara/app/editres/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/editres
|
||||
XDEPS = lib/libXaw lib/libX11 lib/libXt lib/libXmu
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/fonttosfnt/Makefile
Normal file
5
base/xenocara/app/fonttosfnt/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/fonttosfnt
|
||||
XDEPS = proto/x11proto lib/freetype lib/libfontenc
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/fslsfonts/Makefile
Normal file
5
base/xenocara/app/fslsfonts/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/fslsfonts
|
||||
XDEPS = proto/x11proto lib/freetype lib/libfontenc lib/libFS
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/fstobdf/Makefile
Normal file
5
base/xenocara/app/fstobdf/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/fstobdf
|
||||
XDEPS = lib/libX11 lib/libFS
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/fvwm/Makefile
Normal file
6
base/xenocara/app/fvwm/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/fvwm
|
||||
XDEPS = lib/libXpm lib/libXt lib/libICE lib/libSM lib/libXext \
|
||||
lib/libX11 lib/libxcb lib/libXdmcp lib/libXau
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/glxgears/Makefile
Normal file
7
base/xenocara/app/glxgears/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/glxgears
|
||||
XDEPS = lib/libGL lib/libXext lib/libX11 \
|
||||
lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/glxinfo/Makefile
Normal file
7
base/xenocara/app/glxinfo/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/glxinfo
|
||||
XDEPS = lib/libGL lib/libXext lib/libX11 \
|
||||
lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/iceauth/Makefile
Normal file
6
base/xenocara/app/iceauth/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/iceauth
|
||||
XDEPS = proto/x11proto lib/libICE
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/ico/Makefile
Normal file
6
base/xenocara/app/ico/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/ico
|
||||
XDEPS = lib/libX11 lib/libXaw proto/x11proto lib/libXt lib/libXmu
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/listres/Makefile
Normal file
5
base/xenocara/app/listres/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/listres
|
||||
XDEPS = lib/libXt lib/libXaw lib/libXmu
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/luit/Makefile
Normal file
5
base/xenocara/app/luit/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/luit
|
||||
XDEPS = lib/libfontenc
|
||||
|
||||
.include <bsd.port.mk>
|
3
base/xenocara/app/mkfontdir/Makefile
Normal file
3
base/xenocara/app/mkfontdir/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/mkfontdir
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/mkfontscale/Makefile
Normal file
6
base/xenocara/app/mkfontscale/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/mkfontscale
|
||||
XDEPS = lib/libfontenc lib/freetype proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/oclock/Makefile
Normal file
6
base/xenocara/app/oclock/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/oclock
|
||||
XDEPS = lib/libX11 lib/libXmu lib/libXext lib/libXt lib/libxkbfile
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/rgb/Makefile
Normal file
6
base/xenocara/app/rgb/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/rgb
|
||||
XDEPS = proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/scripts/Makefile
Normal file
6
base/xenocara/app/scripts/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/scripts
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/sessreg/Makefile
Normal file
6
base/xenocara/app/sessreg/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/sessreg
|
||||
XDEPS = proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/setxkbmap/Makefile
Normal file
6
base/xenocara/app/setxkbmap/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/setxkbmap
|
||||
XDEPS = lib/libxkbfile lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/showfont/Makefile
Normal file
6
base/xenocara/app/showfont/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/showfont
|
||||
XDEPS = lib/libFS
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/smproxy/Makefile
Normal file
6
base/xenocara/app/smproxy/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/smproxy
|
||||
XDEPS = lib/libSM lib/libICE lib/libXt lib/libXmu
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
8
base/xenocara/app/ssh-askpass/Makefile
Normal file
8
base/xenocara/app/ssh-askpass/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/ssh-askpass
|
||||
XDEPS = lib/libXt lib/libSM lib/libICE lib/libXinerama \
|
||||
lib/libX11 lib/libxcb lib/libXau lib/libXdmcp \
|
||||
lib/libXext
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/twm/Makefile
Normal file
7
base/xenocara/app/twm/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/twm
|
||||
XDEPS = lib/libX11 lib/libXext lib/libXt lib/libXmu lib/libICE \
|
||||
lib/libSM proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/video/Makefile
Normal file
7
base/xenocara/app/video/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/video
|
||||
XDEPS = lib/libXv lib/libXext lib/libX11 lib/libxcb \
|
||||
lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/viewres/Makefile
Normal file
6
base/xenocara/app/viewres/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/viewres
|
||||
XDEPS = lib/libXaw lib/libXmu lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/x11perf/Makefile
Normal file
7
base/xenocara/app/x11perf/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/x11perf
|
||||
XDEPS = lib/libX11 lib/libXmu lib/libXrender lib/libXft lib/libXext
|
||||
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
5
base/xenocara/app/xauth/Makefile
Normal file
5
base/xenocara/app/xauth/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xauth
|
||||
XDEPS = lib/libX11 lib/libXau lib/libXext lib/libXmu
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xbacklight/Makefile
Normal file
7
base/xenocara/app/xbacklight/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xbacklight
|
||||
XDEPS = lib/libXrandr lib/libX11
|
||||
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xbiff/Makefile
Normal file
6
base/xenocara/app/xbiff/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xbiff
|
||||
XDEPS = lib/libXaw lib/libXmu data/bitmaps lib/libXext lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xcalc/Makefile
Normal file
6
base/xenocara/app/xcalc/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xcalc
|
||||
XDEPS = lib/libXaw lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xclipboard/Makefile
Normal file
7
base/xenocara/app/xclipboard/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xclipboard
|
||||
XDEPS = lib/libxkbfile lib/libXaw lib/libXmu lib/libXt \
|
||||
lib/libX11 lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xclock/Makefile
Normal file
6
base/xenocara/app/xclock/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xclock
|
||||
|
||||
XDEPS = lib/libX11 lib/libXmu lib/libXaw
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xcmsdb/Makefile
Normal file
6
base/xenocara/app/xcmsdb/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xcmsdb
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xcompmgr/Makefile
Normal file
7
base/xenocara/app/xcompmgr/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xcompmgr
|
||||
XDEPS = lib/libXcomposite lib/libXfixes lib/libXdamage \
|
||||
lib/libXrender lib/libXext
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xconsole/Makefile
Normal file
6
base/xenocara/app/xconsole/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xconsole
|
||||
XDEPS = lib/libXaw lib/libXmu lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
8
base/xenocara/app/xdm/Makefile
Normal file
8
base/xenocara/app/xdm/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xdm
|
||||
XDEPS = lib/libXmu lib/libX11 lib/libXau lib/libXinerama \
|
||||
lib/libXft lib/libXrender lib/libXpm lib/libXaw \
|
||||
lib/libXdmcp lib/libXau lib/libXext lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
9
base/xenocara/app/xdpyinfo/Makefile
Normal file
9
base/xenocara/app/xdpyinfo/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xdpyinfo
|
||||
XDEPS = lib/libXext lib/libX11 lib/libXtst \
|
||||
lib/libxcb lib/libXxf86vm lib/libXxf86dga lib/libXxf86misc \
|
||||
lib/libXi lib/libXrender lib/libXcomposite lib/libXinerama \
|
||||
lib/libdmx lib/libXtst
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xdriinfo/Makefile
Normal file
6
base/xenocara/app/xdriinfo/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xdriinfo
|
||||
XDEPS = lib/libXext lib/libX11 proto/glproto lib/libGL
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xedit/Makefile
Normal file
6
base/xenocara/app/xedit/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xedit
|
||||
XDEPS = lib/libXaw lib/libXmu lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xev/Makefile
Normal file
6
base/xenocara/app/xev/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xev
|
||||
XDEPS = lib/libXrandr lib/libX11 proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xeyes/Makefile
Normal file
6
base/xenocara/app/xeyes/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xeyes
|
||||
XDEPS = lib/libX11 lib/libXt lib/libXext lib/libXmu lib/libXrender
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xf86dga/Makefile
Normal file
6
base/xenocara/app/xf86dga/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xf86dga
|
||||
XDEPS = lib/libX11 lib/libXxf86dga
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xfd/Makefile
Normal file
7
base/xenocara/app/xfd/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xfd
|
||||
XDEPS = lib/libXaw lib/fontconfig lib/libXft lib/libXrender \
|
||||
lib/libXmu lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xfontsel/Makefile
Normal file
6
base/xenocara/app/xfontsel/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xfontsel
|
||||
XDEPS = lib/libXaw lib/libXmu lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xfs/Makefile
Normal file
6
base/xenocara/app/xfs/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xfs
|
||||
XDEPS = proto/x11proto lib/libXfont lib/libxtrans
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xfsinfo/Makefile
Normal file
6
base/xenocara/app/xfsinfo/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xfsinfo
|
||||
XDEPS = proto/x11proto lib/libFS
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xfwp/Makefile
Normal file
6
base/xenocara/app/xfwp/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xfwp
|
||||
XDEPS = proto/x11proto lib/libICE proto/pmproto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xgamma/Makefile
Normal file
6
base/xenocara/app/xgamma/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xgamma
|
||||
XDEPS = lib/libX11 lib/libXxf86vm
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xgc/Makefile
Normal file
6
base/xenocara/app/xgc/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xgc
|
||||
XDEPS = lib/libXaw lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xhost/Makefile
Normal file
6
base/xenocara/app/xhost/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xhost
|
||||
XDEPS = lib/libX11 lib/libXmu lib/libXau
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xidle/Makefile
Normal file
7
base/xenocara/app/xidle/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xidle
|
||||
XDEPS = lib/libXScrnSaver lib/libXext lib/libX11 lib/libxcb \
|
||||
lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xinit/Makefile
Normal file
6
base/xenocara/app/xinit/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xinit
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xinput/Makefile
Normal file
6
base/xenocara/app/xinput/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xinput
|
||||
XDEPS = lib/libX11 lib/libXext lib/libXi lib/libXrandr proto/inputproto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xkbcomp/Makefile
Normal file
6
base/xenocara/app/xkbcomp/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xkbcomp
|
||||
XDEPS = lib/libX11 lib/libxkbfile
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xkbevd/Makefile
Normal file
6
base/xenocara/app/xkbevd/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xkbevd
|
||||
XDEPS = lib/libxkbfile lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xkbprint/Makefile
Normal file
6
base/xenocara/app/xkbprint/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xkbprint
|
||||
XDEPS = lib/libxkbfile lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xkbutils/Makefile
Normal file
6
base/xenocara/app/xkbutils/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xkbutils
|
||||
XDEPS = proto/x11proto lib/libXaw lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xkill/Makefile
Normal file
6
base/xenocara/app/xkill/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xkill
|
||||
XDEPS = lib/libX11 lib/libXmu
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xload/Makefile
Normal file
6
base/xenocara/app/xload/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xload
|
||||
XDEPS = lib/libXaw lib/libXmu lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
8
base/xenocara/app/xlockmore/Makefile
Normal file
8
base/xenocara/app/xlockmore/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xlockmore
|
||||
XDEPS = lib/libSM lib/libICE lib/libXmu lib/libXpm \
|
||||
lib/freetype lib/libGL lib/libGLU lib/libX11 \
|
||||
lib/libxcb lib/libXext lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xlogo/Makefile
Normal file
6
base/xenocara/app/xlogo/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xlogo
|
||||
XDEPS = lib/libXrender lib/libXft lib/libXt lib/libXaw
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xlsatoms/Makefile
Normal file
6
base/xenocara/app/xlsatoms/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xlsatoms
|
||||
XDEPS = lib/libxcb
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xlsclients/Makefile
Normal file
6
base/xenocara/app/xlsclients/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xlsclients
|
||||
XDEPS = lib/libxcb
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xlsfonts/Makefile
Normal file
6
base/xenocara/app/xlsfonts/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xlsfonts
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xmag/Makefile
Normal file
6
base/xenocara/app/xmag/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xmag
|
||||
XDEPS = lib/libXaw lib/libXmu lib/libXt lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xman/Makefile
Normal file
6
base/xenocara/app/xman/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xman
|
||||
XDEPS = proto/x11proto lib/libXaw lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xmessage/Makefile
Normal file
6
base/xenocara/app/xmessage/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xmessage
|
||||
XDEPS = lib/libXaw lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xmodmap/Makefile
Normal file
6
base/xenocara/app/xmodmap/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xmodmap
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xmore/Makefile
Normal file
6
base/xenocara/app/xmore/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xmore
|
||||
XDEPS = lib/libXaw lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xpr/Makefile
Normal file
6
base/xenocara/app/xpr/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xpr
|
||||
XDEPS = lib/libXmu lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xprop/Makefile
Normal file
6
base/xenocara/app/xprop/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xprop
|
||||
XDEPS = lib/libX11 proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xrandr/Makefile
Normal file
6
base/xenocara/app/xrandr/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xrandr
|
||||
XDEPS = lib/libXrandr lib/libXrender lib/libX11 proto/x11proto
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xrdb/Makefile
Normal file
6
base/xenocara/app/xrdb/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xrdb
|
||||
XDEPS = lib/libXmu lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xrefresh/Makefile
Normal file
6
base/xenocara/app/xrefresh/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xrefresh
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xset/Makefile
Normal file
7
base/xenocara/app/xset/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xset
|
||||
XDEPS = proto/x11proto lib/libXmu lib/libX11 lib/libXext \
|
||||
lib/libXxf86misc lib/libXfontcache
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xsetroot/Makefile
Normal file
6
base/xenocara/app/xsetroot/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xsetroot
|
||||
XDEPS = lib/libXmu lib/libX11 data/bitmaps lib/libXcursor
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xsm/Makefile
Normal file
6
base/xenocara/app/xsm/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xsm
|
||||
XDEPS = lib/libX11 lib/libXt lib/libICE lib/libSM lib/libXaw
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xstdcmap/Makefile
Normal file
6
base/xenocara/app/xstdcmap/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xstdcmap
|
||||
XDEPS = lib/libXmu lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
8
base/xenocara/app/xsystrace/Makefile
Normal file
8
base/xenocara/app/xsystrace/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xsystrace
|
||||
XDEPS = lib/libXaw lib/libXt lib/libSM lib/libICE lib/libXmu \
|
||||
lib/libXpm lib/libX11 lib/libxcb lib/libXext \
|
||||
lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
9
base/xenocara/app/xterm/Makefile
Normal file
9
base/xenocara/app/xterm/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xterm
|
||||
XDEPS = lib/libXaw lib/libXpm lib/libXt lib/libSM lib/libICE \
|
||||
lib/libXmu lib/libXft lib/libXrender lib/libX11 \
|
||||
lib/libxcb lib/libXext lib/libXau lib/libXdmcp \
|
||||
lib/fontconfig lib/freetype
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
8
base/xenocara/app/xtsscale/Makefile
Normal file
8
base/xenocara/app/xtsscale/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xtsscale
|
||||
XDEPS = lib/libXft lib/libXi lib/libXrender lib/libXrandr \
|
||||
lib/libXext lib/libX11 lib/libxcb lib/libXau \
|
||||
lib/libXdmcp lib/fontconfig lib/freetype
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
7
base/xenocara/app/xvctl/Makefile
Normal file
7
base/xenocara/app/xvctl/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xvctl
|
||||
XDEPS = lib/libXv lib/libXext lib/libX11 lib/libxcb \
|
||||
lib/libXau lib/libXdmcp
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xvidtune/Makefile
Normal file
6
base/xenocara/app/xvidtune/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xvidtune
|
||||
XDEPS = lib/libXxf86vm lib/libXt lib/libXaw lib/libXmu lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xvinfo/Makefile
Normal file
6
base/xenocara/app/xvinfo/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xvinfo
|
||||
XDEPS = lib/libXv lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xwd/Makefile
Normal file
6
base/xenocara/app/xwd/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xwd
|
||||
XDEPS = lib/libX11 proto/x11proto lib/libXt
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xwininfo/Makefile
Normal file
6
base/xenocara/app/xwininfo/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xwininfo
|
||||
XDEPS = lib/libxcb lib/xcb-util lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
6
base/xenocara/app/xwud/Makefile
Normal file
6
base/xenocara/app/xwud/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/01 09:58:05 espie Exp $
|
||||
COMPONENT = app/xwud
|
||||
XDEPS = lib/libX11
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user