5a4c543c2b
a kwm, zeising production: MESA 9.1.6 Starring: Mesa 9.1.6, including libGL, libGLU and dri (new xorg only) Addition of libEGL and libglesv2 KMS support for ATI graphics cards in 10-current (new xorg only) Improved sparc64 support for new xorg. [1] pixman 0.30.2, including shlib bump and portrevision bumps libX11 1.6.2 Make absolute pointing devices work with x11-drivers/xf86-input-mouse x11-drivers/xf86-video-ati 7.2.0 for 10-current (KMS aware ati driver) Also starring: Updates to drivers and other libraries and utilities Additional notes: When updating MESA related ports (libGL, dri) you need to remove old versions first. See UPDATING for details. PR: ports/181962 [2] Submitted by: marius [1] zeising [2] Exp-run by: bdrewery Approved by: portmgr (bdrewery) Thanks to all who helped testing!
78 lines
2.4 KiB
Makefile
78 lines
2.4 KiB
Makefile
# Created by: Martin Dieringer <martin.dieringe@gmx.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= repsnapper
|
|
PORTVERSION= 2.2.0b3
|
|
PORTREVISION= 1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= https://codeload.github.com/timschmidt/repsnapper/tar.gz/
|
|
DISTNAME= ${PORTVERSION}
|
|
EXTRACT_SUFX= #
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= martin.dieringer@gmx.de
|
|
COMMENT= Controller and GCode generator for RepRap 3D printers
|
|
|
|
LICENSE= GPLv2 BSD MIT
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser
|
|
LIB_DEPENDS= libgtkglextmm-x11-1.2.so:${PORTSDIR}/x11-toolkits/gtkglextmm \
|
|
libgtkmm-2.4.so:${PORTSDIR}/x11-toolkits/gtkmm24 \
|
|
libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 \
|
|
libcairomm-1.0.so:${PORTSDIR}/graphics/cairomm \
|
|
libzip.so:${PORTSDIR}/archivers/libzip \
|
|
libatkmm-1.6.so:${PORTSDIR}/accessibility/atkmm \
|
|
libglibmm-2.4.so:${PORTSDIR}/devel/glibmm \
|
|
libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \
|
|
libsigc-2.0.so:${PORTSDIR}/devel/libsigc++20 \
|
|
libpcre.so:${PORTSDIR}/devel/pcre \
|
|
libdrm.so:${PORTSDIR}/graphics/libdrm \
|
|
libpng15.so:${PORTSDIR}/graphics/png \
|
|
libfreetype.so:${PORTSDIR}/print/freetype2 \
|
|
libexpat.so:${PORTSDIR}/textproc/expat2 \
|
|
libxml++-2.6.so:${PORTSDIR}/textproc/libxml++26 \
|
|
libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \
|
|
libpangomm-1.4.so:${PORTSDIR}/x11-toolkits/pangomm
|
|
|
|
USES= gmake pkgconfig iconv
|
|
USE_GNOME= gdkpixbuf2 gtk20 libxml2
|
|
USE_GL= gl
|
|
USE_AUTOTOOLS= automake libtool
|
|
USE_XORG= ice pixman sm x11 xau xcb xcomposite xcursor xdamage xdmcp \
|
|
xext xfixes xi xinerama xmu xrandr xrender xt xxf86vm
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
INSTALL_TARGET= install-strip
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ./autogen.sh
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} 's|src/repsnapper.conf||' \
|
|
${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} 's|DATADIRNAME = lib|DATADIRNAME = share|' \
|
|
${WRKSRC}/po/Makefile
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/etc/xdg/repsnapper
|
|
${INSTALL_DATA} ${WRKSRC}/src/repsnapper.conf \
|
|
${PREFIX}/etc/xdg/repsnapper/repsnapper.conf.sample
|
|
@if [ ! -f ${PREFIX}/etc/xdg/repsnapper/repsnapper.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/xdg/repsnapper/repsnapper.conf.sample \
|
|
${PREFIX}/etc/xdg/repsnapper/repsnapper.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|