mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
0263b9d868
both current (fc4) and future linux (f8) distributions at one ports tree. The patch contains full changes to ports/Mk files and all ports involved. But only infrastructure is changed. The resulting packages are the same as before. Hence no need to bump PORTREVISIONs. The idea was taken from bsd.gnome.mk and others. More than 130 ports are switched to follow a new linux infrastructure introduced by changes to bsd.port.mk, bsd.linux-rpm.mk and a new bsd.linux-apps.mk. Thanks for all who was involved and helped me with this work. And help from Alexander Leidinger was incredible. Other changes are coming. Stay tuned! PR: ports/132510 Submitted by: bsam (me) Exp-run by: portmgr (pav)
38 lines
841 B
Makefile
38 lines
841 B
Makefile
# New ports collection makefile for: adom
|
|
# Date created: 22 July 1999
|
|
# Whom: Oleg V. Volkov <rover@lglobus.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= adom
|
|
PORTVERSION= 1.1.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= games linux
|
|
MASTER_SITES= http://www.adom.de/adom/download/linux/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g}-elf
|
|
|
|
MAINTAINER= sr-13@mail.ru
|
|
COMMENT= An rogue-like advanced rpg with color support (binary port)
|
|
|
|
NO_CDROM= Copy of CD must be sent to author
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= xorglibs
|
|
|
|
WRKSRC= ${WRKDIR}/adom
|
|
NO_BUILD= yes
|
|
STRIP= # empty: do not strip linux binary!
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/adom ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for docs in readme.1st adomfaq.txt manual.doc
|
|
@${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|