head	1.13;
access;
symbols
	RELEASE_8_3_0:1.11
	RELEASE_9_0_0:1.11
	RELEASE_7_4_0:1.10
	RELEASE_8_2_0:1.10
	RELEASE_6_EOL:1.10
	RELEASE_8_1_0:1.10
	RELEASE_7_3_0:1.10
	RELEASE_8_0_0:1.10
	RELEASE_7_2_0:1.9
	RELEASE_7_1_0:1.8
	RELEASE_6_4_0:1.8
	RELEASE_5_EOL:1.7
	RELEASE_7_0_0:1.6
	RELEASE_6_3_0:1.6
	PRE_XORG_7:1.6
	RELEASE_4_EOL:1.6
	RELEASE_6_2_0:1.6
	RELEASE_6_1_0:1.6
	RELEASE_5_5_0:1.6
	RELEASE_6_0_0:1.5
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.3;
locks; strict;
comment	@# @;


1.13
date	2012.11.17.06.02.39;	author svnexp;	state Exp;
branches;
next	1.12;

1.12
date	2012.09.15.20.00.32;	author naddy;	state Exp;
branches;
next	1.11;

1.11
date	2011.11.19.16.37.28;	author naddy;	state Exp;
branches;
next	1.10;

1.10
date	2009.08.22.00.38.11;	author amdmi3;	state Exp;
branches;
next	1.9;

1.9
date	2009.03.27.18.03.19;	author naddy;	state Exp;
branches;
next	1.8;

1.8
date	2008.08.21.06.18.36;	author rafan;	state Exp;
branches;
next	1.7;

1.7
date	2008.04.19.17.54.09;	author miwi;	state Exp;
branches;
next	1.6;

1.6
date	2006.02.08.15.47.23;	author naddy;	state Exp;
branches;
next	1.5;

1.5
date	2005.04.12.03.26.44;	author obrien;	state Exp;
branches;
next	1.4;

1.4
date	2005.04.11.08.04.19;	author obrien;	state Exp;
branches;
next	1.3;

1.3
date	2003.04.28.22.21.17;	author naddy;	state Exp;
branches;
next	1.2;

1.2
date	2003.04.28.17.58.17;	author naddy;	state Exp;
branches;
next	1.1;

1.1
date	2003.04.19.14.00.38;	author naddy;	state Exp;
branches;
next	;


desc
@@


1.13
log
@Switch exporter over
@
text
@# $FreeBSD: head/www/man2web/Makefile 304323 2012-09-15 20:00:32Z naddy $

PORTNAME=	man2web
PORTVERSION=	0.88
PORTREVISION=	2
CATEGORIES=	www
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

MAINTAINER=	ports@@FreeBSD.org
COMMENT=	Convert man pages to HTML

GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--bindir="${PREFIX}/${CGIDIR}" \
		--sysconfdir="${PREFIX}/etc" \
		--with-manpath=/usr/share/man:${LOCALBASE}/man \
		--with-distro=freebsd --enable-lynx
MAKE_JOBS_SAFE=	yes

PLIST_SUB=	CGIDIR="${CGIDIR}"
CGIDIR=	www/cgi-bin

MAN1=	man2web.1
MAN5=	man2web.conf.5

post-extract:
	${CP} ${FILESDIR}/freebsd.h ${WRKSRC}/src/section_h/

# default Apache configuration disallows symlinks in cgi-bin
post-install:
	${LN} -sf ${PREFIX}/${CGIDIR}/man2web ${PREFIX}/bin/man2web

.include <bsd.port.mk>
@


1.12
log
@SVN rev 304323 on 2012-09-15 20:00:32Z by naddy

Remove pointless header lines from ports I created once upon a time.
@
text
@d1 1
a1 1
# $FreeBSD$
@


1.11
log
@Drop maintainer.  I probably haven't used this in eight years.

Feature safe:	yes
@
text
@a0 4
# New ports collection makefile for:   man2web
# Date created:                2003-04-19
# Whom:                        Christian Weisgerber <naddy@@freebsd.org>
#
a1 1
#
@


1.10
log
@- Switch SourceForge ports to the new File Release System: categories starting with W
@
text
@d14 1
a14 1
MAINTAINER=	naddy@@FreeBSD.org
@


1.9
log
@Mark MAKE_JOBS_SAFE for parallel building.
@
text
@d12 1
a12 2
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@


1.8
log
@Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
@
text
@d23 1
@


1.7
log
@- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
	Dmitry Marakasov, Chess Griffin, beech@@, dinoex, rafan, gahr,
	ehaupt, nox, itetcu, flz, pav

PR:		116263
Tested on:	pointyhat
Approved by:	portmgr (pav)
@
text
@a18 1
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.6
log
@Clean up cgi-bin dir.

Submitted by:	kris (pointyhat)
@
text
@d22 1
a22 1
		--with-manpath=/usr/share/man:${X11BASE}/man:${LOCALBASE}/man \
@


1.5
log
@At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
@
text
@d10 1
a10 1
PORTREVISION=	1
@


1.4
log
@Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
@
text
@d19 1
a19 1
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
@


1.3
log
@Tweaks, specify manpath to allow section index generation.
@
text
@d19 1
a19 1
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.2
log
@Maintenance update to 0.88.
@
text
@d10 1
d20 3
a22 1
CONFIGURE_ARGS=	--sysconfdir="${PREFIX}/etc" \
d36 1
a36 2
	${LN} -f ${PREFIX}/bin/man2web ${PREFIX}/${CGIDIR}/man2web || \
	    ${INSTALL_PROGRAM} ${WRKSRC}/src/man2web ${PREFIX}/${CGIDIR}/
@


1.1
log
@Add man2web 0.87.

man2web is a program for converting man (manual) output to HTML on
the fly (as a CGI program) or on the command line.
@
text
@d9 1
a9 1
PORTVERSION=	0.87
d19 2
a20 2
CONFIGURE_ARGS= --bindir="${PREFIX}/${CGIDIR}" \
		--sysconfdir="${PREFIX}/etc"
a22 1

d27 8
@

