35 lines
763 B
Makefile
35 lines
763 B
Makefile
# $OpenBSD: Makefile,v 1.1 2013/12/03 00:49:44 fgsch Exp $
|
|
|
|
COMMENT = compiz configuration system library
|
|
|
|
V = 0.8.8
|
|
DISTNAME = libcompizconfig-${V}
|
|
|
|
SHARED_LIBS = compizconfig 0.0 # 0.0
|
|
|
|
MASTER_SITES = http://releases.compiz.org/${V}/
|
|
|
|
WANTLIB = X11 m stdc++ xcb xml2 z
|
|
|
|
MODULES = converters/libiconv \
|
|
textproc/intltool
|
|
|
|
BUILD_DEPENDS = x11/compiz/core
|
|
RUN_DEPENDS = x11/compiz/core
|
|
LIB_DEPENDS = textproc/libxml
|
|
|
|
LIBTOOL_FLAGS = --tag=disable-static
|
|
|
|
BASESYSCONFDIR = ${LOCALBASE}/share/compiz
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --disable-protobuf
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
@rm -f ${PREFIX}/lib/compiz/*.la \
|
|
${PREFIX}/lib/compizconfig/backends/*.la
|
|
|
|
.include <bsd.port.mk>
|