mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
563483e5dc
- take maintainership; - supply new MASTER_SITES for the distfile; - specify LICENSE (GPLv2); - simplify BUILD_DEPENDS; - bump PORTREVISION. Approved by: az (mentor)
36 lines
817 B
Makefile
36 lines
817 B
Makefile
# Created by: Joseph S. Atkinson <jsatkinson@embarqmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= manualsize
|
|
PORTVERSION= 0.7
|
|
PORTREVISION= 5
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= LOCAL/eugen \
|
|
http://www.grosbein.net/freebsd/distfiles/
|
|
PKGNAMEPREFIX= pidgin-
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= eugen@FreeBSD.org
|
|
COMMENT= Plugin to allow manual resizing of Pidgin's message input area
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= pidgin:net-im/pidgin
|
|
RUN_DEPENDS= pidgin:net-im/pidgin
|
|
|
|
MAKEFILE= makefile
|
|
|
|
PLIST_FILES= lib/pidgin/manualsize.so
|
|
|
|
USES= pkgconfig tar:bzip2
|
|
ALL_TARGET= manualsize.so
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/gcc/$$(CC)/' ${WRKSRC}/makefile
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/pidgin
|
|
${INSTALL_LIB} ${WRKSRC}/manualsize.so ${STAGEDIR}${PREFIX}/lib/pidgin
|
|
|
|
.include <bsd.port.mk>
|