# New ports collection makefile for: pciids # Date created: 2006-08-07 # Whom: Michael Johnson # # $FreeBSD$ # $MCom: ports/misc/pciids/Makefile,v 1.3 2006/09/09 14:40:41 ahze Exp $ PORTNAME= pciids PORTVERSION= 20060916 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