Import of geekcode.

The Geek Code Generator.  It simply generates your geek code
by asking questions about all aspects of your geekiness
This commit is contained in:
Chris Piazza 1999-08-30 07:48:45 +00:00
parent 3817587abe
commit c34042a75b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=21113
6 changed files with 59 additions and 0 deletions

18
misc/geekcode/Makefile Normal file
View file

@ -0,0 +1,18 @@
# New ports collection makefile for: geekcode generator
# Version required: 1.1
# Date created: 30 Aug 1999
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
#
# $FreeBSD$
#
DISTNAME= geekcode-1.1
CATEGORIES= misc
MASTER_SITES= http://seymour.napalm.net/
MAINTAINER= cpiazza@FreeBSD.org
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/geekcode ${PREFIX}/bin
.include <bsd.port.mk>

1
misc/geekcode/distinfo Normal file
View file

@ -0,0 +1 @@
MD5 (geekcode-1.1.tar.gz) = 38e550117689f04c0803ccce5e0b1f84

View file

@ -0,0 +1,34 @@
--- Makefile.orig Sun Aug 29 11:02:52 1999
+++ Makefile Mon Aug 30 00:42:38 1999
@@ -1,6 +1,6 @@
-CFLAGS=-O3 -Wall -s
+CFLAGS?=-O3 -Wall -s
TARGET=geekcode
-CC=gcc
+CC?=gcc
SRCFILES = gc_appearance.c \
gc_computers.c \
@@ -24,14 +24,14 @@
rm -f $(TARGET) $(LIBFILES)
geekcode:
- gcc $(CFLAGS) -c gc_appearance.c
- gcc $(CFLAGS) -c gc_computers.c
- gcc $(CFLAGS) -c gc_entertainment.c
- gcc $(CFLAGS) -c gc_lifestyle.c
- gcc $(CFLAGS) -c gc_politics.c
- gcc $(CFLAGS) -c gc_type.c
- gcc $(CFLAGS) -c geekcode.c
- gcc $(CFLAGS) -o $(TARGET) $(LIBFILES)
+ ${CC} $(CFLAGS) -c gc_appearance.c
+ ${CC} $(CFLAGS) -c gc_computers.c
+ ${CC} $(CFLAGS) -c gc_entertainment.c
+ ${CC} $(CFLAGS) -c gc_lifestyle.c
+ ${CC} $(CFLAGS) -c gc_politics.c
+ ${CC} $(CFLAGS) -c gc_type.c
+ ${CC} $(CFLAGS) -c geekcode.c
+ ${CC} $(CFLAGS) -o $(TARGET) $(LIBFILES)
install:
install -m 755 geekcode /usr/local/bin

View file

@ -0,0 +1 @@
A Geek Code Generator

4
misc/geekcode/pkg-descr Normal file
View file

@ -0,0 +1,4 @@
The Geek Code Generator. It simply generates your geek code
by asking questions about all aspects of your geek life.
WWW: http://seymour.napalm.net/geekcode.html

1
misc/geekcode/pkg-plist Normal file
View file

@ -0,0 +1 @@
bin/geekcode