What's new in at-spi2-core 2.46.0: * Fix GetInterfaces documentation on org.a11y.atspi.Accessible interface. What's new in at-spi2-core 2.45.91: * Send device event controller events using the same signature as other events. * Document the Accessible, Action, and Cache dbus interfaces. * Fix license of atspi-gmain.c (#87). What's new in at-spi2-core 2.45.90: * xml: Add some documentation. * xml: Fix event arguments. * xml: Add some missing DeviceEventController methods. * Bind the AT-SPI bus to the graphical session. * Mark bus service as belonging to the session slice. * Add ATSPI_ROLE_PUSH_BUTTON_MENU. * Add an "announcement" event/signal to allow objects to send notifications (!63). * Various code clean-ups and test improvements. What's new in at-spi2-core 2.45.1: * Atk and at-spi2-atk are now merged into this project. * Now requires meson 0.56.2 and glib 2.67.4. * at-spi2-atk: Expose the accessible hierarchy via dbus introspection. * Properly escape the AT-SPI bus address; fixes warnings about the address not containing a colon (!55). * Add a text value to AtspiValue, so that a value can expose a textual description, as in the new Atk value API. * Add atspi_event_listener_register_with_app, to allow an event listener to be registered only for a given application (!52). - accessibility/atk and accessibility/at-spi2-atk have been merged into accessibility/at-spi2-core - accessibility/at-spi2-core: bump consumers of removed ports atk and at-spi2-atk PR: 269704 Exp-run by: antoine ---
51 lines
1.7 KiB
Makefile
51 lines
1.7 KiB
Makefile
PORTNAME= isomaster
|
|
PORTVERSION= 1.3.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://littlesvr.ca/isomaster/releases/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK2 (bootable) CD ISO Image editor
|
|
WWW= http://littlesvr.ca/isomaster/
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libiniparser.so:devel/iniparser \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
RUN_DEPENDS= xdg-open:devel/xdg-utils
|
|
|
|
USES= desktop-file-utils gettext gmake gnome pkgconfig tar:bzip2
|
|
USE_GNOME= cairo gdkpixbuf2 gtk20
|
|
MAKE_ENV= DEFAULT_VIEWER="xdg-open" USE_SYSTEM_INIPARSER=1
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -Diniparser_setstr=iniparser_set
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|<time.h>|<sys/time.h>|' ${WRKSRC}/bk/bkMisc.c
|
|
@${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|@$$(CC)|$$(CC)|'
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} isomaster \
|
|
${STAGEDIR}${PREFIX}/bin)
|
|
(cd ${WRKSRC} && ${INSTALL_MAN} isomaster.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1)
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/icons
|
|
.for i in add2-kearone.png delete-kearone.png extract2-kearone.png \
|
|
folder-new-kearone.png go-back-kearone.png isomaster.png
|
|
(cd ${WRKSRC}/icons && ${INSTALL_DATA} ${i} \
|
|
${STAGEDIR}${DATADIR}/icons)
|
|
.endfor
|
|
.for i in ar be@latin bg bn_IN ca cs da de el es et fi fo fr gl he hr hu \
|
|
id it ja lt lv nb nl nn pl pt pt_BR ro ru sk sl sq sr sr@Latn \
|
|
sr@latin sv tr uk ur_PK zh_CN zh_TW
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${i}/LC_MESSAGES
|
|
(cd ${WRKSRC}/po && ${INSTALL_DATA} ${i}.mo \
|
|
${STAGEDIR}${PREFIX}/share/locale/${i}/LC_MESSAGES/isomaster.mo)
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/isomaster.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
|
|
.include <bsd.port.mk>
|