cdd9bea4f6
I am working on a couple of new ports that I hope to submit shortly. One of these required an updated copy of the Linux SDL library. I contacted the port maintainer listed on FreeBSD.org, but he no longer maintains this port: --- Hash: SHA1 Hello, if you look at the current ports tree I don't maintain the port anymore. Therefore sending any code to me won't help. The best for you is submitting a PR and requesting maintainership for the port. Thank you, Martin Matuska ---- Therefore, I updated it myself. My machine is Intel based, so I was able to test that version out. For the alpha based version, I downloaded the code, created the MD5 listing and tested it out as best I could. I have included two different files, one diff between the old and my versions, and a shar of the completed new version. I am willing to take maintainership of this port, as Martin Matuska recommend. PR: ports/50616 Submitted by: Erik Olson <esolson@olsonexpress.com>
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: linux-sdl
|
|
# Date created: 8 October 2001
|
|
# Whom: Martin Matuska <martin@tradex.sk>
|
|
# Based on: emulators/linux_base by marcel@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sdl
|
|
PORTVERSION= 1.2.5
|
|
CATEGORIES= devel linux
|
|
MASTER_SITES= http://www.libsdl.org/release/ \
|
|
ftp://ftp.icm.edu.pl/vol/rzm9/linux-pld/pool/s/SDL/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= ${PORTNAME:U}-${PORTVERSION:S/.1$/-1/}-1.${MACHINE_ARCH}
|
|
EXTRACT_SUFX= .rpm
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Cross-platform multi-media development API (linux version)
|
|
|
|
BUILD_DEPENDS= rpm:${PORTSDIR}/archivers/rpm
|
|
|
|
USE_LINUX_PREFIX= yes
|
|
LDCONFIG_LINUX= ${LINUXBASE}/sbin/ldconfig
|
|
|
|
ONLY_FOR_ARCHS= i386 alpha
|
|
DIST_SUBDIR= rpm
|
|
NO_BUILD= yes
|
|
NO_FILTER_SHLIBS= yes
|
|
PLIST= ${MASTERDIR}/pkg-plist.${MACHINE_ARCH}
|
|
MD5_FILE= ${MASTERDIR}/distinfo.${MACHINE_ARCH}
|
|
|
|
DBPATH= /var/lib/rpm
|
|
RPMFLAGS= --ignoreos --root ${PREFIX} --dbpath ${DBPATH} \
|
|
--nodeps --replacepkgs
|
|
RPMDIR= ${DISTDIR}/${DIST_SUBDIR}
|
|
|
|
do-install:
|
|
@${LOCALBASE}/bin/rpm -U ${RPMFLAGS} ${RPMDIR}/${DISTFILES}
|
|
@${LDCONFIG_LINUX}
|
|
|
|
.include <bsd.port.mk>
|