a487734df5
- fix WANTLIB - add desktop-file-utils goo - update patches while here ok robert@
69 lines
1.7 KiB
Makefile
69 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.15 2007/10/16 12:44:50 ajacoutot Exp $
|
|
|
|
COMMENT= tools to talk to GSM cellular phones
|
|
|
|
VERSION= 0.6.14
|
|
DISTNAME= gnokii-${VERSION}
|
|
PKGNAME= ${DISTNAME}p4
|
|
CATEGORIES= comms x11
|
|
SHARED_LIBS += gnokii 2.7 # .3.0
|
|
|
|
MAINTAINER= Robert Nagy <robert@openbsd.org>
|
|
|
|
HOMEPAGE= http://www.gnokii.org/
|
|
MASTER_SITES= ${HOMEPAGE}download/gnokii/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
WANTLIB= c iconv intl
|
|
|
|
USE_LIBTOOL= Yes
|
|
USE_GMAKE= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
MODULES= devel/gettext
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -liconv -lintl"
|
|
CONFIGURE_ARGS= --enable-security \
|
|
--disable-debug \
|
|
--disable-xdebug \
|
|
--disable-rlpdebug
|
|
|
|
.if ${FLAVOR:L:Mno_x11}
|
|
CONFIGURE_ARGS+= --without-x
|
|
.else
|
|
USE_X11= Yes
|
|
CONFIGURE_ARGS+= --with-x
|
|
WANTLIB+= X11 Xau Xdmcp Xpm Xrender fontconfig freetype z \
|
|
m pthread atk-1.0.>=800.0 glib-2.0.>=400.8 \
|
|
gmodule-2.0.>=400.8 gobject-2.0.>=400.8 \
|
|
pango-1.0.>=600.0 pangoft2-1.0.>=600.0 \
|
|
pangocairo-1.0 cairo glitz png expat \
|
|
Xcursor Xext Xfixes Xi Xinerama Xrandr
|
|
LIB_DEPENDS= gtk-x11-2.0.>=400.13,gdk-x11-2.0.>=400.13,gdk_pixbuf-2.0.>=400.13::x11/gtk+2
|
|
RUN_DEPENDS+= :desktop-file-utils-*:devel/desktop-file-utils
|
|
.endif
|
|
|
|
LIB_DEPENDS+= usb.>=8::devel/libusb
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gnokii
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/sample/gnokiirc \
|
|
${PREFIX}/share/examples/gnokii
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/man/gnokii.1 \
|
|
${PREFIX}/man/man1
|
|
.if !${FLAVOR:L:Mno_x11}
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/man/xgnokii.1x \
|
|
${PREFIX}/man/man1/xgnokii.1
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|