freebsd-ports/archivers/dpkg/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

46 lines
1.2 KiB
Makefile

# New ports collection makefile for: dpkg
# Date created: 1 April 2003
# Whom: Hye-Shik Chang <perky@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= dpkg
PORTVERSION= 1.9.21
PORTREVISION= 2
CATEGORIES= archivers sysutils
MASTER_SITES= http://ftp.debian.org/debian/pool/main/d/dpkg/
DISTNAME= dpkg_${PORTVERSION}
MAINTAINER= perky@FreeBSD.org
COMMENT= Package maintenance system for Debian
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_ICONV= yes
USE_PERL5= yes
USE_AUTOTOOLS= autoconf:213
WRKSRC= ${WRKDIR}/dpkg-${PORTVERSION}
CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE} \
--with-admindir=${PREFIX}/var/dpkg
MAKE_ENV= GETTEXTBASE=${LOCALBASE}
MAN1= 822-date.1 dpkg-architecture.1 dpkg-buildpackage.1 \
dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-distaddfile.1 \
dpkg-genchanges.1 dpkg-gencontrol.1 dpkg-name.1 \
dpkg-parsechangelog.1 dpkg-shlibdeps.1 dpkg-source.1 \
md5sum.1
MAN8= cleanup-info.8 dpkg-divert.8 dpkg-scanpackages.8 \
dpkg-scansources.8 dpkg-split.8 dpkg-statoverride.8 \
dpkg.8 dselect.8 install-info.8 start-stop-daemon.8 \
update-alternatives.8 update-rc.d.8
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>