head	1.19;
access;
symbols
	RELEASE_8_3_0:1.18
	RELEASE_9_0_0:1.18
	RELEASE_7_4_0:1.18
	RELEASE_8_2_0:1.18
	RELEASE_6_EOL:1.18
	RELEASE_8_1_0:1.18
	RELEASE_7_3_0:1.18
	RELEASE_8_0_0:1.17
	RELEASE_7_2_0:1.16
	RELEASE_7_1_0:1.16
	RELEASE_6_4_0:1.16
	RELEASE_5_EOL:1.15
	RELEASE_7_0_0:1.14
	RELEASE_6_3_0:1.14
	PRE_XORG_7:1.13
	RELEASE_4_EOL:1.13
	RELEASE_6_2_0:1.13
	RELEASE_6_1_0:1.12
	RELEASE_5_5_0:1.12
	RELEASE_6_0_0:1.11
	RELEASE_5_4_0:1.9
	RELEASE_4_11_0:1.9
	RELEASE_5_3_0:1.9
	RELEASE_4_10_0:1.8
	RELEASE_5_2_1:1.7
	RELEASE_5_2_0:1.7
	RELEASE_4_9_0:1.7
	RELEASE_5_1_0:1.5
	RELEASE_4_8_0:1.5
	RELEASE_5_0_0:1.4
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.2;
locks; strict;
comment	@# @;


1.19
date	2012.11.17.05.57.30;	author svnexp;	state Exp;
branches;
next	1.18;

1.18
date	2009.11.20.22.53.02;	author pav;	state Exp;
branches;
next	1.17;

1.17
date	2009.08.28.16.52.26;	author linimon;	state Exp;
branches;
next	1.16;

1.16
date	2008.08.21.06.17.01;	author rafan;	state Exp;
branches;
next	1.15;

1.15
date	2008.01.23.22.43.35;	author beech;	state Exp;
branches;
next	1.14;

1.14
date	2007.10.19.05.34.37;	author leeym;	state Exp;
branches;
next	1.13;

1.13
date	2006.05.07.11.09.20;	author edwin;	state Exp;
branches;
next	1.12;

1.12
date	2005.11.08.02.48.07;	author mnag;	state Exp;
branches;
next	1.11;

1.11
date	2005.05.25.07.35.19;	author jylefort;	state Exp;
branches;
next	1.10;

1.10
date	2005.05.21.17.20.22;	author kris;	state Exp;
branches;
next	1.9;

1.9
date	2004.05.11.01.37.20;	author eik;	state Exp;
branches;
next	1.8;

1.8
date	2004.02.06.13.11.17;	author trevor;	state Exp;
branches;
next	1.7;

1.7
date	2003.08.01.09.03.37;	author krion;	state Exp;
branches;
next	1.6;

1.6
date	2003.07.30.21.58.37;	author kris;	state Exp;
branches;
next	1.5;

1.5
date	2003.02.21.12.00.37;	author knu;	state Exp;
branches;
next	1.4;

1.4
date	2002.05.18.06.13.56;	author pat;	state Exp;
branches;
next	1.3;

1.3
date	2002.05.15.13.15.04;	author ijliao;	state Exp;
branches;
next	1.2;

1.2
date	2002.03.28.16.20.25;	author ijliao;	state Exp;
branches;
next	1.1;

1.1
date	2002.03.17.16.08.13;	author kevlo;	state Exp;
branches;
next	;


desc
@@


1.19
log
@Switch exporter over
@
text
@# New ports collection makefile for:	vsftpd
# Date created:				17 Mar 2002
# Whom:					Gea-Suan Lin <gslin@@ccca.nctu.edu.tw>
#
# $FreeBSD: head/ftp/pftpd/Makefile 300896 2012-07-14 13:54:48Z beat $
#

PORTNAME=	pftpd
PORTVERSION=	1.0.2
CATEGORIES=	ftp
MASTER_SITES=	ftp://ftp.lysator.liu.se/pub/unix/pftpd/ \
		ftp://ftp.ifm.liu.se/pub/unix/pftpd/

MAINTAINER=	ports@@FreeBSD.org
COMMENT=	Multithreaded anonymous FTP daemon

GNU_CONFIGURE=	yes
MAKE_JOBS_UNSAFE=	yes

MAN1=		pftpd.1 rpad.1
PLIST_FILES=	sbin/pftpd

post-extract:
.for f in ${MAN1}
	@@${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/doc/${f}
.endfor

post-patch:
	@@${REINPLACE_CMD} -e 's|mktemp|mkstemp|g' \
		${WRKSRC}/src/rpa.c
	@@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
		${WRKSRC}/configure \
		${WRKSRC}/plib/configure

post-install:
	@@${CAT} ${WRKSRC}/ISSUES

.include <bsd.port.mk>
@


1.18
log
@- Mark MAKE_JOBS_UNSAFE

Reported by:	pointyhat
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.17
log
@Reset beech@@FreeBSD.org while he works on restoring his email situation.

Hat:		portmgr
@
text
@d18 1
@


1.16
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
@d14 1
a14 1
MAINTAINER=	beech@@FreeBSD.org
@


1.15
log
@- Adopt orphan ports in ftp category.

Approved by:	linimon (mentor, implicit)
@
text
@a17 1
CONFIGURE_TARGET=	--build=${ARCH}-portbld-freebsd${OSREL}
@


1.14
log
@- update to 1.0.2
@
text
@d14 1
a14 1
MAINTAINER=	ports@@FreeBSD.org
@


1.13
log
@Remove USE_REINPLACE from all categories starting with F
@
text
@d9 1
a9 2
PORTVERSION=	1.0.1
PORTREVISION=	1
@


1.12
log
@Use mkstemp() instead of mktemp()
Bump PORTREVISION

PR:		88633
Submitted by:	chinsan <chinsan.tw@@gmail.com>
@
text
@a18 1
USE_REINPLACE=	yes
@


1.11
log
@- Update to 1.0.1
- Add a mirror site, since the primary site is temporarily unreachable
- Remove RESTRICTED, as the license now allows redistribution

PR:		ports/81411
Submitted by:	Johan van Selst <johans@@stack.nl>
@
text
@d10 1
d20 1
d31 2
@


1.10
log
@BROKEN: Unfetchable
@
text
@d9 1
a9 1
PORTVERSION=	0.42
d11 2
a12 1
MASTER_SITES=	ftp://ftp.lysator.liu.se/pub/unix/pftpd/
a16 2
BROKEN=		Unfetchable

a19 2
RESTRICTED=	License problem

d23 4
a26 1
.include <bsd.port.pre.mk>
d36 1
a36 1
.include <bsd.port.post.mk>
@


1.9
log
@Drop maintainership.

PR:		66502
Submitted by:	Gea-Suan Lin <gslin@@netnews.NCTU.edu.tw> (maintainer)
@
text
@d16 2
@


1.8
log
@Use PLIST_FILES (bento-tested, marcus-reviewed).
@
text
@d13 1
a13 1
MAINTAINER=	gslin@@ccca.nctu.edu.tw
@


1.7
log
@Fix build on -current

Submitted by:	kris via bento
Approved by:	fjoe (mentor) (implicit)
@
text
@d22 1
@


1.6
log
@Consolidate NO_CDROM and NO_PACKAGE into RESTRICTED, and mark BROKEN on
5.x (does not compile)
@
text
@d17 1
d25 4
a28 3
.if ${OSVERSION} > 501000
BROKEN=		"Does not compile"
.endif
@


1.5
log
@De-pkg-comment.
@
text
@d18 1
a18 2
NO_CDROM=	License problem
NO_PACKAGE=	${NO_CDROM}
d22 6
d31 1
a31 1
.include <bsd.port.mk>
@


1.4
log
@Update to 0.42

PR:		38206
Submitted by:	maintainer
@
text
@d14 1
@


1.3
log
@upgrade to 0.39

PR:		38094
Submitted by:	maintainer
@
text
@d9 1
a9 1
PORTVERSION=	0.39
d17 2
a18 2
NO_CDROM=	"License problem"
NO_PACKAGE=	"License problem"
@


1.2
log
@upgrade to 0.3.3

PR:		36422
Submitted by:	maintainer
@
text
@d9 1
a9 1
PORTVERSION=	0.33
d20 1
a20 2
post-configure:
	@@${PERL} -pi -e 's/.*man8.*//g' ${WRKSRC}/Makefile
@


1.1
log
@Initial import of pftpd-0.31.

Pftpd is the multithreaded anonymous FTP daemon.

PR: 36012
Submitted by: Gea-Suan Lin <gslin@@infomath.math.nctu.edu.tw>
@
text
@d9 1
a9 1
PORTVERSION=	0.31
d22 3
@

