mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
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:
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
18
misc/geekcode/Makefile
Normal 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
1
misc/geekcode/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (geekcode-1.1.tar.gz) = 38e550117689f04c0803ccce5e0b1f84
|
34
misc/geekcode/files/patch-aa
Normal file
34
misc/geekcode/files/patch-aa
Normal 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
|
1
misc/geekcode/pkg-comment
Normal file
1
misc/geekcode/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A Geek Code Generator
|
4
misc/geekcode/pkg-descr
Normal file
4
misc/geekcode/pkg-descr
Normal 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
1
misc/geekcode/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/geekcode
|
Loading…
Add table
Reference in a new issue