Initial import of the FreeBSD xsnow port.
This commit is contained in:
parent
f38e7b58df
commit
35023e7310
6 changed files with 41 additions and 0 deletions
24
x11/xsnow/Makefile
Normal file
24
x11/xsnow/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# New ports collection makefile for: xsnow
|
||||
# Version required: 1.40
|
||||
# Date created: 12 November 1994
|
||||
# Whom: jmz
|
||||
#
|
||||
# $Id: Makefile,v 1.1.1.1 1997/12/02 14:27:47 is Exp $
|
||||
#
|
||||
|
||||
DISTNAME= xsnow-1.40
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= ${MASTER_SITE_XCONTRIB}
|
||||
MASTER_SITE_SUBDIR= games
|
||||
EXTRACT_SUFX= .tar.Z
|
||||
|
||||
MAINTAINER= jmz@FreeBSD.org
|
||||
|
||||
USE_IMAKE= yes
|
||||
|
||||
pre-install:
|
||||
@mkdir -p ${PREFIX}/bin
|
||||
@mkdir -p ${PREFIX}/man/man6
|
||||
@(cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install.man)
|
||||
|
||||
.include <bsd.port.mk>
|
1
x11/xsnow/files/md5
Normal file
1
x11/xsnow/files/md5
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (xsnow-1.40.tar.Z) = 3d47c3bf4df725ecf41f282a185f51b9
|
1
x11/xsnow/pkg/COMMENT
Normal file
1
x11/xsnow/pkg/COMMENT
Normal file
|
@ -0,0 +1 @@
|
|||
Create a snowy and Santa-y desktop.
|
2
x11/xsnow/pkg/DESCR
Normal file
2
x11/xsnow/pkg/DESCR
Normal file
|
@ -0,0 +1,2 @@
|
|||
Xsnow displays lovely moving snowflakes on your desktop, with Santa Claus
|
||||
running all over the screen.
|
2
x11/xsnow/pkg/PLIST
Normal file
2
x11/xsnow/pkg/PLIST
Normal file
|
@ -0,0 +1,2 @@
|
|||
bin/xsnow
|
||||
man/man6/xsnow.6.gz
|
11
x11/xsnow/scripts/configure
vendored
Normal file
11
x11/xsnow/scripts/configure
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
cd $WRKSRC || exit 1;
|
||||
|
||||
mv xsnow.c xsnow.c.orig
|
||||
sed -e 's/^void usleep(usec)/void Xusleep(usec)/' <xsnow.c.orig>xsnow.c
|
||||
|
||||
echo "BINDIR=$PREFIX/bin" >> Imakefile || exit 1;
|
||||
echo "MANDIR=$PREFIX/man/man6" >> Imakefile || exit 1;
|
||||
echo "MANSUFFIX=6" >> Imakefile || exit 1;
|
||||
exit 0;
|
Loading…
Reference in a new issue