# New ports collection makefile for:	pciids
# Date created:		2006-08-07
# Whom:			Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD: ports/misc/pciids/Makefile,v 1.1 2006/10/14 08:35:46 marcus Exp $
#    $MCom: ports/misc/pciids/Makefile,v 1.5 2006/09/29 20:57:46 ahze Exp $

PORTNAME=	pciids
PORTVERSION=	20060929
CATEGORIES=	misc
MASTER_SITES=	http://www.ahze.net/~ahze/distfiles/ \
		${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=	ahze

MAINTAINER=	gnome@FreeBSD.org
COMMENT=	Pci.ids database from pciutils

USE_BZIP2=	yes
NO_BUILD=	yes
PLIST_FILES=	%%DATADIR%%/pci.ids \
		%%DATADIR%%/pci.db
PLIST_DIRS=	%%DATADIR%%

do-install:
	${MKDIR} ${DATADIR}
	${INSTALL_DATA} ${WRKSRC}/pci.ids ${DATADIR}
	${INSTALL_DATA} ${WRKSRC}/pci.db ${DATADIR}

# Below only contains code to create a tar file for this beast
CT_DATE!=	date "+%Y%m%d"
CT_WRKSRC=	${WRKDIR}/tmp
CT_DESTDIR=	${PORTNAME}-${CT_DATE}
CT_TEMPDIR=	${CT_WRKSRC}/${CT_DESTDIR}
CT_MASTER_SITE=	http://pciids.sourceforge.net/v2.2/
CT_DISTFILES=	pci.ids pci.db

maketar:
	${MKDIR} ${CT_TEMPDIR}
.for file in ${CT_DISTFILES}
	(cd ${CT_TEMPDIR} && ${FETCH_CMD} ${CT_MASTER_SITE}/${file})
.endfor
	(cd ${CT_WRKSRC} && ${TAR} -jcf ${PORTNAME}-${CT_DATE}.tar.bz2 ${CT_DESTDIR})

.include <bsd.port.mk>
