mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
35 lines
823 B
Makefile
35 lines
823 B
Makefile
# Created by: MANTANI Nobutaka <nobutaka@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMESUFFIX= -gnome
|
|
|
|
COMMENT= GNOME applets of uim input method
|
|
|
|
USE_GNOME= gtk20 gnomepanel libgnomeui
|
|
LIB_DEPENDS= uim:${PORTSDIR}/textproc/uim
|
|
RUN_DEPENDS= uim-pref-gtk:${PORTSDIR}/textproc/uim-gtk
|
|
|
|
MASTERDIR= ${.CURDIR}/../../textproc/uim
|
|
PKGDIR= ${.CURDIR}
|
|
CONFIGURE_ENV= LIBS="`pkg-config --libs libgnomeui-2.0`"
|
|
CPPFLAGS+= `pkg-config --cflags libgnomeui-2.0`
|
|
CONFIGURE_ARGS= --with-gtk2 --enable-gnome-applet
|
|
|
|
UIM_SLAVE= yes
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-gtk2_toolbar_Makefile.in
|
|
|
|
.if defined(WITHOUT_X11)
|
|
IGNORE= requires X11
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
(cd ${WRKSRC}/gtk2/toolbar && ${GMAKE})
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}/gtk2/toolbar && \
|
|
${GMAKE} install-serverDATA install-libexecPROGRAMS)
|
|
|
|
.include "${MASTERDIR}/Makefile"
|