diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2011-12-16 18:31:43 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2011-12-16 18:31:43 +0000 |
commit | 093d602a8c9b6468529a31aa02b2d0600f2cc827 (patch) | |
tree | a129eecc8160669811019df3de26acc07643f91d /x11-themes | |
parent | 4fc451f2b2bef3c1e67c01def1319cd6cd09e5b1 (diff) | |
download | ports-093d602a8c9b6468529a31aa02b2d0600f2cc827.tar.gz ports-093d602a8c9b6468529a31aa02b2d0600f2cc827.zip |
- Define LICENSE (GPLv2)
- Install some docs and manpage (courtesy of Debian)
- Remove dead master site
- Adjust COMMENT and Makefile header while here
- Since MMX/SSE2 code is written in i386-specific assembly and is also not
64-bit safe, check for == i386 instead of != amd64 (should be no-op)
- Remove USE_LDCONFIG which makes no sense in this case
Notes
Notes:
svn path=/head/; revision=287488
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/polymer/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/x11-themes/polymer/Makefile b/x11-themes/polymer/Makefile index 1708f658f99d..1db85abe9d3c 100644 --- a/x11-themes/polymer/Makefile +++ b/x11-themes/polymer/Makefile @@ -1,4 +1,4 @@ -# New ports collection makefile for: Qt port of Plastik +# New ports collection makefile for: Polymer (Qt3 port of Plastik) # Date Created: 30 Oct 2006 # Whom: Alexey Dokuchaev <danfe@FreeBSD.org> # @@ -7,14 +7,15 @@ PORTNAME= polymer PORTVERSION= 0.3.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= x11-themes -MASTER_SITES= http://static.int.pl/~mig21/dev/releases/polymer/ \ - ${MASTER_SITE_LOCAL} +MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= danfe MAINTAINER= danfe@FreeBSD.org -COMMENT= Qt port of Plastik KDE theme +COMMENT= Pure Qt3 port of Plastik KDE theme + +LICENSE= GPLv2 BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake @@ -22,7 +23,6 @@ USE_BZIP2= yes USE_AUTOTOOLS= autoheader USE_GMAKE= yes # parallel builds (-jX) are broken with BSD make(1) USE_QT_VER= 3 -USE_LDCONFIG= yes MAKE_ARGS+= QTDIR=${QT_PREFIX} \ QMAKESPEC=${LOCALBASE}/share/qt/mkspecs/freebsd-g++ \ @@ -32,9 +32,12 @@ CONFIGURE_ENV+= THREAD_CFLAGS="${PTHREAD_CFLAGS}" \ QTSTYLESDIR= ${PREFIX}/lib/plugins/styles +MAN1= polymer-config.1 +PORTDOCS= AUTHORS ChangeLog README TODO + .include <bsd.port.pre.mk> -.if ${ARCH} != amd64 +.if ${ARCH} == i386 .if ${MACHINE_CPU:Mmmx} CONFIGURE_ARGS+= --enable-mmx .endif @@ -48,5 +51,10 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/style/libpolymer.so.1.0.0 \ ${QTSTYLESDIR}/polymer.so ${INSTALL_PROGRAM} ${WRKSRC}/config/polymer-config ${PREFIX}/bin + ${INSTALL_MAN} ${FILESDIR}/polymer-config.1 ${MANPREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} +.endif .include <bsd.port.post.mk> |