mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
36 lines
697 B
Makefile
36 lines
697 B
Makefile
# Created by: Alex Samorukov <samm@os2.kiev.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stoken
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/stoken
|
|
|
|
MAINTAINER= samm@os2.kiev.ua
|
|
COMMENT= Software Token for UNIX compatible with RSA SecurID
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libtomcrypt.so:${PORTSDIR}/security/libtomcrypt
|
|
|
|
OPTIONS_DEFINE= X11
|
|
OPTIONS_SUB= yes
|
|
|
|
X11_CONFIGURE_WITH= gtk
|
|
X11_DESC= Build GUI token interface
|
|
X11_USE= GNOME=gtk20
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-pkgconfigdir="${PREFIX}/libdata/pkgconfig"
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= libxml2
|
|
USES= pkgconfig libtool
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.include <bsd.port.mk>
|