mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
3bc498db0e
It contains e16menuedit and e16keyedit. PR: 22110 22113 Submitted by: Jeremy Norris <ishmael27@home.com> Merged by: clive Reviewed by: Jeremy Norris <ishmael27@home.com>
41 lines
860 B
Makefile
41 lines
860 B
Makefile
# New ports collection makefile for: e16utils
|
|
# Date Created: 17 Oct 2000
|
|
# Whom: Jeremy Norris <ishmael27@home.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= e16utils
|
|
PORTVERSION= 0.16
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= ftp://ftp.enlightenment.org/pub/enlightenment/e16utils/
|
|
DISTFILES= e16menuedit-0.1.tar.gz e16keyedit-0.2.tar.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.ORG
|
|
|
|
LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_IMLIB= yes
|
|
|
|
SUB_STUBS= e16menuedit-0.1 e16keyedit-0.2
|
|
|
|
do-patch:
|
|
.for i in ${SUB_STUBS}
|
|
@cd ${WRKDIR}/${i} ; ${PATCH} -s < ${PATCHDIR}/patch-${i}
|
|
.endfor
|
|
|
|
do-build:
|
|
.for i in ${SUB_STUBS}
|
|
@cd ${WRKDIR}/${i} ; ${SETENV} GTK_CONFIG=${GTK_CONFIG} make all
|
|
.endfor
|
|
|
|
do-install:
|
|
.for i in ${SUB_STUBS}
|
|
@cd ${WRKDIR}/${i} ; \
|
|
${INSTALL_PROGRAM} `${ECHO} '${i}' | ${SED} -e 's,-\(.*\),,'` \
|
|
${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|