mirror of https://git.FreeBSD.org/ports.git
xfed, a program to edit .bdf files. This stuff is so old, I couldn't
find a site that has a tarball of the latest sources so I had to write my own "fetch:" target to get the files and tar them up. Maybe we can add a rule like this to bsd.port.mk. Interested parties please take a look at the Makefile.
This commit is contained in:
parent
e33c930039
commit
e1273eb09a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=543
|
|
@ -0,0 +1,36 @@
|
|||
# New ports collection makefile for: xfed
|
||||
# Version required: something old
|
||||
# Date created: 7 December 1994
|
||||
# Whom: asami
|
||||
#
|
||||
# $Id:$
|
||||
#
|
||||
|
||||
DISTNAME= xfed
|
||||
TARFILE= xfed.tar.gz
|
||||
SOURCEFILES= Epistle,README,Imakefile,xfed.man \
|
||||
icon.bit,next.bit,prev.bit,quit.bit,save.bit \
|
||||
defs.h,main.c,output.c,parse.y,scan.l
|
||||
USE_IMAKE= yes
|
||||
INSTALL_MANPAGES= yes
|
||||
#MASTER_SITES= ftp://me10.lbl.gov/pub/hp_X11R3_tape/source/app/
|
||||
SOURCESITE= ftp://ftp.cs.orst.edu/pub/src/X11R4/contrib/clients/xfed/
|
||||
#EXTRACT_SUFX= .tar.Z
|
||||
|
||||
fetch: pre-fetch
|
||||
@if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi
|
||||
@noglob= ; \
|
||||
if [ ! -f ${DISTDIR}/${TARFILE} ]; then \
|
||||
rm -rf ${.CURDIR}/src; \
|
||||
mkdir -p ${.CURDIR}/src/xfed; \
|
||||
echo ">> Fetching files from remote site..."; \
|
||||
for file in ${SOURCEFILES}; do \
|
||||
(cd ${.CURDIR}/src/xfed; \
|
||||
${NCFTP} ${NCFTPFLAGS} ${SOURCESITE}\{$$file\}); \
|
||||
done; \
|
||||
echo ">> Now creating a tarball ${DISTDIR}/${TARFILE}..."; \
|
||||
tar -C ${.CURDIR}/src -czf ${DISTDIR}/${TARFILE} xfed; \
|
||||
rm -rf ${.CURDIR}/src; \
|
||||
fi
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
@ -0,0 +1 @@
|
|||
xfed, a program that will let you edit X fonts (.bdf files)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
xfed is a program that will let you edit X fonts (.bdf files). It
|
||||
originates in the pre-R3 days and has been modified by lots of people
|
||||
along the way. This version is taken from
|
||||
|
||||
ftp.cs.orst.edu:pub/src/X11R4/contrib/clients/xfed
|
||||
|
||||
- Satoshi
|
||||
asami@cs.berkeley.edu
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
@cwd /usr/X11R6
|
||||
bin/xfed
|
||||
man/man1/xfed.1.gz
|
||||
Loading…
Reference in New Issue