qRFCView is a viewer for IETF RFCs. Advantages are: * automatic table of content, with direct opening of section; * handling of RFC internal cross-references; * automatic downloading of a referenced RFC from the IETF web site on a simple click; * caching of RFC in a local directory; * tab-browsing of RFC; * searching. From Antoine Jacoutot <ajacoutot@lphp.org>
39 lines
867 B
Makefile
Executable File
39 lines
867 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2006/07/30 22:25:41 alek Exp $
|
|
|
|
COMMENT= "viewer for IETF RFCs"
|
|
|
|
DISTNAME= qrfcview-0.62
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://qrfcview.berlios.de/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@lphp.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= ICE Xrender SM freetype c pthread stdc++ Xrandr \
|
|
Xinerama Xcursor Xext m Xi fontconfig X11 z QtGui \
|
|
QtNetwork png
|
|
|
|
MASTER_SITES= http://download.berlios.de/qrfcview/ \
|
|
http://download2.berlios.de/qrfcview/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
|
MODULES= x11/qt4
|
|
USE_X11= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
do-configure:
|
|
perl -pi -e "s/!!CXXFLAGS!!/${CXXFLAGS}/" ${WRKSRC}/src/src.pro
|
|
cd ${WRKDIST} && \
|
|
${LOCALBASE}/bin/qmake4 -unix rfcview.pro
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/bin/qRFCView ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|